diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml
index 29c498bac286868a3bb85c539f3a78913c268cc9..0cb32e415e5caa34a3c7b9e07e21519fba32e8be 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;
+                }
+            }
+        }
     }
 }