diff --git a/packages/app/src/context-menu.ts b/packages/app/src/context-menu.ts index cd2ad8a5..c291906a 100644 --- a/packages/app/src/context-menu.ts +++ b/packages/app/src/context-menu.ts @@ -113,6 +113,15 @@ export default class ContextMenu extends EventEmitter { } }, }, + { + id: 'copyImage', + label: 'Copy Image to Clipboard', + click() { + if (webContents) { + webContents.copyImageAt(props.x, props.y); + } + }, + }, { id: 'copyImageUrl', label: 'Copy Image URL',