aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/quickcontrols')
-rw-r--r--tests/manual/quickcontrols/menus/Main.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/manual/quickcontrols/menus/Main.qml b/tests/manual/quickcontrols/menus/Main.qml
index 7862e49b73..2c066381a9 100644
--- a/tests/manual/quickcontrols/menus/Main.qml
+++ b/tests/manual/quickcontrols/menus/Main.qml
@@ -45,6 +45,11 @@ ApplicationWindow {
title: qsTr("Sub...")
ContextAction { text: qsTr("Sub action 1") }
ContextAction { text: qsTr("Sub action 2") }
+ Menu {
+ title: qsTr("SubSub...")
+ ContextAction { text: qsTr("SubSub action 1") }
+ ContextAction { text: qsTr("SubSub action 2") }
+ }
}
MenuSeparator { }
ContextAction {
@@ -438,6 +443,11 @@ ApplicationWindow {
enabled: false
shortcut: "J"
}
+ Menu {
+ title: qsTr("SubSub...")
+ ContextAction { text: qsTr("SubSub action 1") }
+ ContextAction { text: qsTr("SubSub action 2") }
+ }
}
}