Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
None
-
5.12
-
None
Description
I'm using Qt Labs Platform, which is just a way of using native menus in QML. If I have a "View" menu, an "Enter Full Screen" menu item gets added automatically. This would be fine if there was documentation for how to use it or remove it completely and add my own, but currently it's just disabled.
If I add my own menu item:
Platform.MenuItem { objectName: "enterFullScreenMenuItem" text: fullScreen ? qsTr("Exit Full Screen") : qsTr("Enter Full Screen") enabled: canvas checkable: true checked: settings.scrollZoom onTriggered: settings.scrollZoom = checked readonly property bool fullScreen: settings.windowVisibility === Window.FullScreen }
Then I end up with two.
Related stuff:
Attachments
Issue Links
- relates to
-
QTBUG-61707 It would be nice if there is way to not show native menu "Show Tab Bar"
- Closed