mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
Rename EmptyCheck -> CheckMark
This commit is contained in:
parent
818ef8e614
commit
f6c48fdf07
5 changed files with 5 additions and 5 deletions
|
@ -32,7 +32,7 @@ CheckBox
|
||||||
width: UM.Theme.getSize("checkbox_mark").width
|
width: UM.Theme.getSize("checkbox_mark").width
|
||||||
sourceSize.height: width
|
sourceSize.height: width
|
||||||
color: UM.Theme.getColor("checkbox_mark")
|
color: UM.Theme.getColor("checkbox_mark")
|
||||||
source: UM.Theme.getIcon("EmptyCheck", "low")
|
source: UM.Theme.getIcon("CheckMark", "low")
|
||||||
opacity: checkbox.checked
|
opacity: checkbox.checked
|
||||||
Behavior on opacity { NumberAnimation { duration: 100; } }
|
Behavior on opacity { NumberAnimation { duration: 100; } }
|
||||||
}
|
}
|
||||||
|
|
|
@ -151,7 +151,7 @@ SettingItem
|
||||||
width: UM.Theme.getSize("checkbox_mark").width
|
width: UM.Theme.getSize("checkbox_mark").width
|
||||||
sourceSize.height: width
|
sourceSize.height: width
|
||||||
color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text");
|
color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text");
|
||||||
source: UM.Theme.getIcon("EmptyCheck", "low")
|
source: UM.Theme.getIcon("CheckMark", "low")
|
||||||
opacity: control.checked ? 1 : 0
|
opacity: control.checked ? 1 : 0
|
||||||
Behavior on opacity { NumberAnimation { duration: 100; } }
|
Behavior on opacity { NumberAnimation { duration: 100; } }
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ MenuItem
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||||
source: UM.Theme.getIcon("EmptyCheck", "low")
|
source: UM.Theme.getIcon("CheckMark", "low")
|
||||||
color: UM.Theme.getColor("setting_control_text")
|
color: UM.Theme.getColor("setting_control_text")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 218 B After Width: | Height: | Size: 218 B |
|
@ -422,7 +422,7 @@ QtObject
|
||||||
width: UM.Theme.getSize("checkbox_mark").width
|
width: UM.Theme.getSize("checkbox_mark").width
|
||||||
sourceSize.height: width
|
sourceSize.height: width
|
||||||
color: UM.Theme.getColor("checkbox_mark")
|
color: UM.Theme.getColor("checkbox_mark")
|
||||||
source: control.exclusiveGroup ? UM.Theme.getIcon("Dot") : UM.Theme.getIcon("EmptyCheck", "low")
|
source: control.exclusiveGroup ? UM.Theme.getIcon("Dot") : UM.Theme.getIcon("CheckMark", "low")
|
||||||
opacity: control.checked
|
opacity: control.checked
|
||||||
Behavior on opacity { NumberAnimation { duration: 100; } }
|
Behavior on opacity { NumberAnimation { duration: 100; } }
|
||||||
}
|
}
|
||||||
|
@ -472,7 +472,7 @@ QtObject
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return control.exclusiveGroup ? UM.Theme.getIcon("Dot", "low") : UM.Theme.getIcon("EmptyCheck", "low");
|
return control.exclusiveGroup ? UM.Theme.getIcon("Dot", "low") : UM.Theme.getIcon("CheckMark", "low");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
opacity: control.checked
|
opacity: control.checked
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue