aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/testbench/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/testbench/main.qml')
-rw-r--r--tests/manual/testbench/main.qml24
1 files changed, 21 insertions, 3 deletions
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index 2fdc52af..dd1a1de8 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -41,9 +41,9 @@
import QtQuick 2.6
import QtQuick.Window 2.2
import QtQuick.Layouts 1.0
-import QtQuick.Controls 2.0
-import QtQuick.Controls.Material 2.0
-import QtQuick.Controls.Universal 2.0
+import QtQuick.Controls 2.1
+import QtQuick.Controls.Material 2.1
+import QtQuick.Controls.Universal 2.1
ApplicationWindow {
id: window
@@ -97,6 +97,12 @@ ApplicationWindow {
text: "Option 3"
checkable: true
}
+
+ MenuSeparator {}
+
+ MenuItem {
+ text: "Option A"
+ }
}
}
ToolButton {
@@ -128,6 +134,18 @@ ApplicationWindow {
text: "Disabled"
enabled: false
}
+
+ ToolSeparator {}
+
+ ToolButton {
+ text: "1"
+ }
+ ToolButton {
+ text: "2"
+ }
+
+ ToolSeparator {}
+
Item {
Layout.fillWidth: true
}