diff options
Diffstat (limited to 'src/styles/Base/ComboBoxStyle.qml')
-rw-r--r-- | src/styles/Base/ComboBoxStyle.qml | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/src/styles/Base/ComboBoxStyle.qml b/src/styles/Base/ComboBoxStyle.qml index 241f3550..7984a329 100644 --- a/src/styles/Base/ComboBoxStyle.qml +++ b/src/styles/Base/ComboBoxStyle.qml @@ -63,13 +63,7 @@ Style { /*! The padding between the background and the label components. */ padding { top: 4 ; left: 6 ; right: 6 ; bottom:4 } - /*! This defines the background of the button. In addition to the public - properties of \c control, the following state properties are available: - - \table - \row \li readonly property bool \b styleData.hovered \li The control is being hovered. - \endtable - */ + /*! This defines the background of the button. */ property Component background: Item { implicitWidth: 100 implicitHeight: 25 @@ -105,13 +99,7 @@ Style { } } - /*! This defines the label of the button. In addition to the public - properties of \c control, the following state properties are available: - - \table - \row \li readonly property bool \b styleData.hovered \li The control is being hovered. - \endtable - */ + /*! This defines the label of the button. */ property Component label: Item { implicitWidth: textitem.implicitWidth + 20 Text { @@ -137,9 +125,6 @@ Style { id: backgroundLoader anchors.fill: parent sourceComponent: background - property QtObject styleData: QtObject { - readonly property bool hovered: control.__containsMouse - } } Loader { @@ -150,9 +135,6 @@ Style { anchors.topMargin: padding.top anchors.rightMargin: padding.right anchors.bottomMargin: padding.bottom - property QtObject styleData: QtObject { - readonly property bool hovered: control.__containsMouse - } } } |