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-04-06 10:57:45 +0300
committerJaime van Kessel <nallath@gmail.com>2022-04-06 10:57:45 +0300
commitc88ed076a1979312d5a2fbd89ca7fa542b8a72c6 (patch)
tree173b8c47a80f4ed8b2d0db101d01348bbbbf01be /plugins/SimulationView
parent605280255f21c3e582f5d0af474a77b173cfd144 (diff)
Fix resolving of URL's
Diffstat (limited to 'plugins/SimulationView')
-rw-r--r--plugins/SimulationView/SimulationViewMainComponent.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml
index 4fb238f6da..a82d1e3db9 100644
--- a/plugins/SimulationView/SimulationViewMainComponent.qml
+++ b/plugins/SimulationView/SimulationViewMainComponent.qml
@@ -75,7 +75,7 @@ Item
UM.SimpleButton
{
id: playButton
- iconSource: !isSimulationPlaying ? "./resources/Play.svg": "./resources/Pause.svg"
+ iconSource: Qt.resolvedUrl(!isSimulationPlaying ? "./resources/Play.svg": "./resources/Pause.svg")
width: UM.Theme.getSize("small_button").width
height: UM.Theme.getSize("small_button").height
hoverColor: UM.Theme.getColor("slider_handle_active")