style: format
This commit is contained in:
+17
-4
@@ -128,13 +128,26 @@ AppWindow {
|
|||||||
AppMenu {
|
AppMenu {
|
||||||
id: menu
|
id: menu
|
||||||
|
|
||||||
Action { text: qsTr("Tool Bar"); checkable: true }
|
Action {
|
||||||
Action { text: qsTr("Side Bar"); checkable: true; checked: true }
|
text: qsTr("Tool Bar")
|
||||||
Action { text: qsTr("Status Bar"); checkable: true; checked: true }
|
checkable: true
|
||||||
|
}
|
||||||
|
Action {
|
||||||
|
text: qsTr("Side Bar")
|
||||||
|
checkable: true
|
||||||
|
checked: true
|
||||||
|
}
|
||||||
|
Action {
|
||||||
|
text: qsTr("Status Bar")
|
||||||
|
checkable: true
|
||||||
|
checked: true
|
||||||
|
}
|
||||||
|
|
||||||
MenuSeparator {}
|
MenuSeparator {}
|
||||||
|
|
||||||
Action { text: "Hello" }
|
Action {
|
||||||
|
text: "Hello"
|
||||||
|
}
|
||||||
|
|
||||||
// NOTE: MenuItem is not recommended as it isn't consistent with the menu theming. Please use Action until a fix is made.
|
// NOTE: MenuItem is not recommended as it isn't consistent with the menu theming. Please use Action until a fix is made.
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user