OSDN Git Service

QmlDesigner.propertyEditor: support for smooth
authorThomas Hartmann <Thomas.Hartmann@nokia.com>
Mon, 6 Dec 2010 16:36:35 +0000 (17:36 +0100)
committerThomas Hartmann <Thomas.Hartmann@nokia.com>
Mon, 6 Dec 2010 16:46:30 +0000 (17:46 +0100)
Support for smooth in all items

share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml
share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml

index 0cb32e4..1355dc6 100644 (file)
@@ -57,20 +57,6 @@ GroupBox {
                 }
                 AlignmentVerticalButtons { }
             }
-        }
-        QWidget {
-            layout: HorizontalLayout {
-                Label {
-                    text: qsTr("Aliasing")
-                }
-
-                CheckBox {
-                    text: qsTr("Smooth")
-                    backendValue: backendValues.smooth
-                    baseStateFlag: isBaseState;
-                    checkable: true;
-                }
-            }
-        }
+        }        
     }
 }
index 444012e..77b1a5a 100644 (file)
@@ -20,7 +20,14 @@ GroupBox {
                     backendValue: backendValues.visible;
                     baseStateFlag: isBaseState;
                     checkable: true;
-                }                
+                }
+                CheckBox {
+                    id: smoothCheckBox;
+                    text: qsTr("Smooth")
+                    backendValue: backendValues.smooth;
+                    baseStateFlag: isBaseState;
+                    checkable: true;
+                }
             }
         }
         QWidget {