From ebb8d82519904ece3ba7bf8aebf8fabd2d8117e0 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Mon, 6 Dec 2010 17:36:35 +0100 Subject: [PATCH] QmlDesigner.propertyEditor: support for smooth Support for smooth in all items --- .../propertyeditor/Qt/StandardTextGroupBox.qml | 16 +--------------- .../qmldesigner/propertyeditor/Qt/Visibility.qml | 9 ++++++++- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml index 0cb32e415e..1355dc66ae 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml @@ -57,20 +57,6 @@ GroupBox { } AlignmentVerticalButtons { } } - } - QWidget { - layout: HorizontalLayout { - Label { - text: qsTr("Aliasing") - } - - CheckBox { - text: qsTr("Smooth") - backendValue: backendValues.smooth - baseStateFlag: isBaseState; - checkable: true; - } - } - } + } } } diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml index 444012e8ac..77b1a5a479 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Visibility.qml @@ -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 { -- 2.11.0