mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
SDA-3869 - include more local shortcuts to fix issue on Windows (#1492)
This commit is contained in:
parent
aba73978b2
commit
6349222335
@ -38,6 +38,38 @@ export default class LocalMenuShortcuts {
|
||||
}),
|
||||
),
|
||||
);
|
||||
this.menu.append(
|
||||
new MenuItem(
|
||||
this.getMenuItemOptions({
|
||||
accelerator: 'CmdOrCtrl+0',
|
||||
click: () => resetZoomLevel(),
|
||||
}),
|
||||
),
|
||||
);
|
||||
this.menu.append(
|
||||
new MenuItem(
|
||||
this.getMenuItemOptions({
|
||||
accelerator: 'CmdOrCtrl+M',
|
||||
role: 'minimize',
|
||||
}),
|
||||
),
|
||||
);
|
||||
this.menu.append(
|
||||
new MenuItem(
|
||||
this.getMenuItemOptions({
|
||||
accelerator: 'CmdOrCtrl+W',
|
||||
role: 'close',
|
||||
}),
|
||||
),
|
||||
);
|
||||
this.menu.append(
|
||||
new MenuItem(
|
||||
this.getMenuItemOptions({
|
||||
accelerator: 'F11',
|
||||
role: 'togglefullscreen',
|
||||
}),
|
||||
),
|
||||
);
|
||||
this.menu.append(
|
||||
new MenuItem(
|
||||
this.getMenuItemOptions({
|
||||
|
Loading…
Reference in New Issue
Block a user