We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 006dcf7 + af593d9 commit c1400d6Copy full SHA for c1400d6
packages/app/src/context-menu.ts
@@ -113,6 +113,15 @@ export default class ContextMenu extends EventEmitter {
113
}
114
},
115
116
+ {
117
+ id: 'copyImage',
118
+ label: 'Copy Image to Clipboard',
119
+ click() {
120
+ if (webContents) {
121
+ webContents.copyImageAt(props.x, props.y);
122
+ }
123
+ },
124
125
{
126
id: 'copyImageUrl',
127
label: 'Copy Image URL',
0 commit comments