aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorials/gettingStartedQml/core/MenuBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tutorials/gettingStartedQml/core/MenuBar.qml')
-rw-r--r--examples/tutorials/gettingStartedQml/core/MenuBar.qml3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/tutorials/gettingStartedQml/core/MenuBar.qml b/examples/tutorials/gettingStartedQml/core/MenuBar.qml
index 8d7be29fdd..f1311805b7 100644
--- a/examples/tutorials/gettingStartedQml/core/MenuBar.qml
+++ b/examples/tutorials/gettingStartedQml/core/MenuBar.qml
@@ -70,7 +70,6 @@ Rectangle {
text: "menu: "
color: "lightblue"
font { weight: Font.Light; italic: true }
- smooth: true
}
//row displays its children in a vertical row
Row {
@@ -85,7 +84,6 @@ Rectangle {
scale: menuListView.currentIndex == 0? 1.25: 1
labelSize: menuListView.currentIndex == 0? 16:12
radius: 1
- smooth:true
//on a button click, change the list's currently selected item to FileMenu
onButtonClick: menuListView.currentIndex = 0
gradient: Gradient {
@@ -101,7 +99,6 @@ Rectangle {
label: "Edit"
radius: 1
labelSize: menuListView.currentIndex == 1? 16:12
- smooth:true
//on a button click, change the list's currently selected item to EditMenu
onButtonClick: menuListView.currentIndex = 1
gradient: Gradient {