Details
-
Type:
Bug
-
Status: Reported
-
Priority:
P3: Somewhat important
-
Resolution: Unresolved
-
Affects Version/s: 5.11
-
Fix Version/s: None
-
Component/s: Quick: Controls 2
-
Environment:macOS
-
Platform/s:
Description
There should be a menu separator between the two items below:
import QtQuick 2.9 import QtQuick.Layouts 1.3 import QtQuick.Controls 2.2 import Qt.labs.platform 1.0 as Platform ApplicationWindow { width: 800 height: 800 visible: true Platform.MenuBar { Platform.Menu { id: editMenu objectName: "editMenu" title: qsTr("Edit") Platform.MenuItem { text: "test" } Platform.MenuSeparator {} Platform.MenuItem { objectName: "selectAllMenuItem" text: qsTr("Select All") } } } }