diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml
index 74fd5a9a00828a8133bfe97bf2f5a66a4c8906c5..27b73c821c6fc4ffed0a98b064f50b98777f37f4 100644
--- a/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/ColorGroupBox.qml
@@ -296,15 +296,14 @@ QExtGroupBox {
                         leftMargin: 0
                         spacing: 2
                         QWidget {
+                            toolTip: qsTr("Hue")
                             layout: HorizontalLayout {
                                 Label {
                                     text: "H"
-                                    toolTip: qsTr("Hue")
                                     fixedWidth: 15
                                 }
 
                                 QSpinBox {
-                                    toolTip: qsTr("Hue")
                                     id: hueSpinBox
                                     maximum: 359
                                     value: colorControl.hue;
@@ -315,14 +314,13 @@ QExtGroupBox {
                             }
                         }
                         QWidget {
+                            toolTip: qsTr("Saturation")
                             layout: HorizontalLayout {
                                 Label {
                                     text: "S"
-                                    toolTip: qsTr("Saturation")
                                     fixedWidth: 15
                                 }
                                 QSpinBox {
-                                    toolTip: qsTr("Saturation")
                                     id: saturationSpinBox
                                     maximum: 255
                                     value: colorControl.saturation;
@@ -334,14 +332,13 @@ QExtGroupBox {
                         }
 
                         QWidget {
+                            toolTip: qsTr("Brightness")
                             layout: HorizontalLayout {
                                 Label {
                                     text: "B"
-                                    toolTip: qsTr("Brightness")
                                     fixedWidth: 15
                                 }
                                 QSpinBox {
-                                    toolTip: qsTr("Brightness")
                                     id: valueSpinBox
                                     maximum: 255
                                     value: colorControl.value;
@@ -352,15 +349,14 @@ QExtGroupBox {
                         }
 
                         QWidget {
+                            toolTip: qsTr("Alpha")
                             layout: HorizontalLayout {
                                 topMargin: 12
                                 Label {
                                     text: "A"
-                                    toolTip: qsTr("Alpha")
                                     fixedWidth: 15
                                 }
                                 QSpinBox {
-                                    toolTip: qsTr("Alpha")
                                     id: alphaSpinBox
                                     maximum: 255
                                     value: colorControl.alpha;