QmlDesigner.propertyEditor: smooth for Text

This commit is contained in:
Thomas Hartmann
2010-04-29 14:18:15 +02:00
parent 7ba6fc8834
commit 3f39f5cd8d

View File

@@ -58,5 +58,19 @@ GroupBox {
AlignmentVerticalButtons { }
}
}
QWidget {
layout: HorizontalLayout {
Label {
text: qsTr("Aliasing")
}
CheckBox {
text: qsTr("Smooth")
backendValue: backendValues.smooth
baseStateFlag: isBaseState;
checkable: true;
}
}
}
}
}