mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 10:17:52 -06:00
WIP: Fix highlighting of selected network printer
This commit is contained in:
parent
60f6d881a3
commit
f7f5123fea
3 changed files with 9 additions and 3 deletions
|
@ -19,6 +19,8 @@ Button
|
|||
checkable: true
|
||||
hoverEnabled: true
|
||||
|
||||
property bool selected: checked
|
||||
|
||||
property var outputDevice: null
|
||||
property var printerTypesList: []
|
||||
|
||||
|
@ -79,7 +81,7 @@ Button
|
|||
color: machineSelectorButton.hovered ? UM.Theme.getColor("action_button_hovered") : "transparent"
|
||||
radius: UM.Theme.getSize("action_button_radius").width
|
||||
border.width: UM.Theme.getSize("default_lining").width
|
||||
border.color: machineSelectorButton.checked ? UM.Theme.getColor("primary") : "transparent"
|
||||
border.color: machineSelectorButton.selected ? UM.Theme.getColor("primary") : "transparent"
|
||||
}
|
||||
|
||||
Connections
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue