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.qml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/manual/quickcontrols/menus/main.qml b/tests/manual/quickcontrols/menus/main.qml
index 31a3a1b970..14a197ab30 100644
--- a/tests/manual/quickcontrols/menus/main.qml
+++ b/tests/manual/quickcontrols/menus/main.qml
@@ -173,6 +173,16 @@ ApplicationWindow {
checkable: true
checked: true
}
+ ContextAction {
+ text: qsTr("Disabled context menu item")
+ enabled: false
+ }
+ ContextAction {
+ text: qsTr("Checked and disabled context menu item")
+ checkable: true
+ checked: true
+ enabled: false
+ }
// TODO: separator
@@ -201,6 +211,16 @@ ApplicationWindow {
checkable: true
checked: true
}
+ ContextAction {
+ text: qsTr("Disabled sub-menu item")
+ enabled: false
+ }
+ ContextAction {
+ text: qsTr("Checked and disabled sub-menu item")
+ checkable: true
+ checked: true
+ enabled: false
+ }
}
}