Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2022-02-28 13:37:51 +0300
committerJaime van Kessel <nallath@gmail.com>2022-02-28 13:37:51 +0300
commit7fd6601b1ac323b03b6e2b302d6d71962dad59d6 (patch)
tree0434067ff716424ac8d38b4935f189a7dbc944fe /plugins/PerObjectSettingsTool
parentb03fbc0d6d090b2032ba73d81ef765695d4debd5 (diff)
Apply theming to perObjectCategory
CURA-8688
Diffstat (limited to 'plugins/PerObjectSettingsTool')
-rw-r--r--plugins/PerObjectSettingsTool/PerObjectCategory.qml14
1 files changed, 6 insertions, 8 deletions
diff --git a/plugins/PerObjectSettingsTool/PerObjectCategory.qml b/plugins/PerObjectSettingsTool/PerObjectCategory.qml
index 1800555b9d..eae74eeb4c 100644
--- a/plugins/PerObjectSettingsTool/PerObjectCategory.qml
+++ b/plugins/PerObjectSettingsTool/PerObjectCategory.qml
@@ -28,8 +28,8 @@ Button {
anchors.verticalCenter: parent.verticalCenter
height: (label.height / 2) | 0
width: height
- source: base.checked ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight");
- color: base.hovered ? palette.highlight : palette.buttonText
+ source: base.checked ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight")
+ color: base.hovered ? UM.Theme.getColor("primary_button_hover"): UM.Theme.getColor("primary_button_text")
}
}
UM.RecolorImage
@@ -38,22 +38,20 @@ Button {
height: label.height
width: height
source: UM.Theme.getIcon(definition.icon)
- color: base.hovered ? palette.highlight : palette.buttonText
+ color: base.hovered ? UM.Theme.getColor("primary_button_hover") : UM.Theme.getColor("primary_button_text")
}
UM.Label
{
id: label
anchors.verticalCenter: parent.verticalCenter
text: base.text
- color: base.hovered ? palette.highlight : palette.buttonText
+ color: base.hovered ? UM.Theme.getColor("primary_button_hover") : UM.Theme.getColor("primary_button_text")
font.bold: true
}
-
- SystemPalette { id: palette }
}
- signal showTooltip(string text);
- signal hideTooltip();
+ signal showTooltip(string text)
+ signal hideTooltip()
signal contextMenuRequested()
text: definition.label