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:
authorDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-12-06 15:50:58 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-12-06 15:50:58 +0300
commit76acb13f5962d9c185dd29aa8618f13db95c588a (patch)
tree66b40a508cf250952ffbfe71421f9a10a1a70171 /plugins/SimulationView
parent4b79770d58e4f3f608a1aa6b079f07b522262564 (diff)
Change the play/pause button colors
Diffstat (limited to 'plugins/SimulationView')
-rw-r--r--plugins/SimulationView/SimulationViewMainComponent.qml7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml
index 16b9aeaae6..16b049c921 100644
--- a/plugins/SimulationView/SimulationViewMainComponent.qml
+++ b/plugins/SimulationView/SimulationViewMainComponent.qml
@@ -61,10 +61,9 @@ Item
iconSource: !is_simulation_playing ? "./resources/simulation_resume.svg": "./resources/simulation_pause.svg"
width: UM.Theme.getSize("small_button").width
height: UM.Theme.getSize("small_button").height
- hoverBackgroundColor: UM.Theme.getColor("small_button_hover")
- hoverColor: UM.Theme.getColor("small_button_text_hover")
- color: UM.Theme.getColor("small_button_text")
- iconMargin: 0.5 * UM.Theme.getSize("wide_lining").width
+ hoverColor: UM.Theme.getColor("slider_handle_active")
+ color: UM.Theme.getColor("slider_handle")
+ iconMargin: UM.Theme.getSize("thick_lining").width
visible: !UM.SimulationView.compatibilityMode
Connections