Move export to file menu
This commit is contained in:
parent
7cf9255e4f
commit
eb8c7e5348
10
src/main.js
10
src/main.js
|
|
@ -3501,6 +3501,11 @@ async function updateMenu() {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
action: importImage,
|
action: importImage,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: "Export...",
|
||||||
|
enabled: true,
|
||||||
|
action: render
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: 'Quit',
|
text: 'Quit',
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
|
@ -3624,11 +3629,6 @@ async function updateMenu() {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
action: () => {}
|
action: () => {}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
text: "Export",
|
|
||||||
enabled: true,
|
|
||||||
action: render
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
const viewSubmenu = await Submenu.new({
|
const viewSubmenu = await Submenu.new({
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue