From 3eb9969d6db64172be406d416a8da2edc8924eb9 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Wed, 21 Mar 2018 15:08:34 +0100 Subject: [PATCH] CURA-4870 Make the Sync button react when the output device changed, otherwise can show a wrong value (not updated). --- resources/qml/Menus/ConfigurationMenu/SyncButton.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/qml/Menus/ConfigurationMenu/SyncButton.qml b/resources/qml/Menus/ConfigurationMenu/SyncButton.qml index 8fe9dacf9a..6654708482 100644 --- a/resources/qml/Menus/ConfigurationMenu/SyncButton.qml +++ b/resources/qml/Menus/ConfigurationMenu/SyncButton.qml @@ -98,4 +98,10 @@ Button target: Cura.MachineManager onCurrentConfigurationChanged: updateOnSync() } + + Connections + { + target: Cura.MachineManager + onOutputDevicesChanged: updateOnSync() + } } \ No newline at end of file