You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/app-menu.ts
+24-4Lines changed: 24 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -400,14 +400,34 @@ export class AppMenu {
400
400
'zoomOut',
401
401
),
402
402
this.buildSeparator(),
403
-
this.assignRoleOrLabel({
404
-
role: 'togglefullscreen',
405
-
label: i18n.t('Toggle Full Screen')(),
406
-
}),
403
+
this.addToggleFullScreenMenuItem(),
407
404
],
408
405
};
409
406
}
410
407
408
+
/**
409
+
* Creates a menu item to toggle full screen with different implementation for windows and macOS due to the difference in how full screen is handled in both OS
0 commit comments