From 3f39f5cd8d19a622e2c2cd9b2e6438496b5bca8d Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Thu, 29 Apr 2010 14:18:15 +0200 Subject: [PATCH] QmlDesigner.propertyEditor: smooth for Text --- .../propertyeditor/Qt/StandardTextGroupBox.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml index 29c498bac28..0cb32e415e5 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml @@ -58,5 +58,19 @@ GroupBox { AlignmentVerticalButtons { } } } + QWidget { + layout: HorizontalLayout { + Label { + text: qsTr("Aliasing") + } + + CheckBox { + text: qsTr("Smooth") + backendValue: backendValues.smooth + baseStateFlag: isBaseState; + checkable: true; + } + } + } } } -- GitLab