There was an error while loading. Please reload this page.
1 parent 25695c0 commit 9f05d72Copy full SHA for 9f05d72
1 file changed
app/qml/menus/WindowMenu.qml
@@ -39,12 +39,13 @@ MenuBar {
39
MenuItem { action: showsettingsAction }
40
}
41
Menu {
42
+ id: viewMenu
43
title: qsTr("View")
44
Instantiator {
45
model: !appSettings.isMacOS ? 1 : 0
46
delegate: MenuItem { action: fullscreenAction }
- onObjectAdded: (index, object) => menu.insertItem(index, object)
47
- onObjectRemoved: (index, object) => menu.removeItem(object)
+ onObjectAdded: (index, object) => viewMenu.insertItem(index, object)
48
+ onObjectRemoved: (index, object) => viewMenu.removeItem(object)
49
50
MenuItem { action: zoomIn }
51
MenuItem { action: zoomOut }
0 commit comments