mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Remove unneeded rounding
This commit is contained in:
parent
6afd669389
commit
1b1c7b78aa
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue