lectrote
lectrote copied to clipboard
Zoom In menu shortcut should be displayed as Cmd-+
Traditionally Zoom In is shown as Cmd-+
(Ctrl-+
on windows) even though you don't hold the shift key to do it. Electron doesn't support that distinction, so I have to display it as Cmd-=
.
(If you define the accelerator as CmdOrCtrl+Plus
, the menu shows Shift-Cmd-=
and you have to use the shift key, which is worse than what I've got now.)
After Electron fix https://github.com/electron/electron/pull/5298 , things have changed: if you define the accelerator as CmdOrCtrl+Plus
, the menu shows Shift-Cmd-+
(better) but you still have to use the shift key (still not good enough).
https://github.com/electron/electron/issues/5256 is the feature I need for this.