X Tutup
Skip to content

Commit bb5e0f6

Browse files
committed
Fix clipboard operations
Cut, copy, paste, and select all operations weren't working (at least on Mac) due to the application menu being hidden. This is likely a change from a recent version of Electron, as the app previously depended upon hidden menu items
1 parent e6eee6c commit bb5e0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/reactors/menu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ function computeMenuTemplate(
338338

339339
edit: {
340340
localizedLabel: ["menu.edit.edit"],
341-
visible: false,
341+
visible: true,
342342
submenu: [
343343
{
344344
localizedLabel: ["menu.edit.cut"],

0 commit comments

Comments
 (0)
X Tutup