mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 01:29:00 +08:00
Remove unneeded rounding
This commit is contained in:
parent
6afd669389
commit
1b1c7b78aa
@ -33,7 +33,7 @@ SettingItem
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
radius: UM.Theme.getSize("setting_control_radius").width
|
radius: UM.Theme.getSize("setting_control_radius").width
|
||||||
border.width: Math.round(UM.Theme.getSize("default_lining").width)
|
border.width: UM.Theme.getSize("default_lining").width
|
||||||
border.color:
|
border.color:
|
||||||
{
|
{
|
||||||
if(!enabled)
|
if(!enabled)
|
||||||
|
@ -25,7 +25,7 @@ Item
|
|||||||
visible: true
|
visible: true
|
||||||
|
|
||||||
radius: UM.Theme.getSize("setting_control_radius").width
|
radius: UM.Theme.getSize("setting_control_radius").width
|
||||||
border.width: Math.round(UM.Theme.getSize("default_lining").width)
|
border.width: UM.Theme.getSize("default_lining").width
|
||||||
border.color:
|
border.color:
|
||||||
{
|
{
|
||||||
if (hoverMouseArea.containsMouse || clearFilterButton.containsMouse)
|
if (hoverMouseArea.containsMouse || clearFilterButton.containsMouse)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user