Setting textfield now updates correctly, even when mouse is hovering another text field.

CURA-1278
This commit is contained in:
Jaime van Kessel 2016-06-01 13:35:09 +02:00
parent a08e71774d
commit 6164112bf2

View file

@ -16,8 +16,6 @@ SettingItem
anchors.fill: parent
property alias hovered: mouseArea.containsMouse;
border.width: UM.Theme.getSize("default_lining").width
border.color: !enabled ? UM.Theme.getColor("setting_control_disabled_border") : hovered ? UM.Theme.getColor("setting_control_border_highlight") : UM.Theme.getColor("setting_control_border")
@ -74,7 +72,7 @@ SettingItem
{
id: mouseArea
anchors.fill: parent;
hoverEnabled: true;
//hoverEnabled: true;
cursorShape: Qt.IBeamCursor
}