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-03-28 12:07:48 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-03-28 12:07:48 +0300
commit79daf3706b79a904263d5b7e3259a63270e16ea9 (patch)
tree30306c59e302b936e50b1eb44a206e70495c1b10 /plugins/UltimakerMachineActions
parent35cd4eb572e85fd4fc98bcdf3196b590c9350c87 (diff)
CURA-5158 Create a custom signal that is emitted when global container
changes and output devices change.
Diffstat (limited to 'plugins/UltimakerMachineActions')
-rw-r--r--plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml b/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml
index f36788daa5..ed771d2a04 100644
--- a/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml
+++ b/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml
@@ -14,7 +14,7 @@ import Cura 1.0 as Cura
Cura.MachineAction
{
anchors.fill: parent;
- property bool printerConnected: Cura.MachineManager.printerOutputDevices.length != 0
+ property bool printerConnected: Cura.MachineManager.printerConnected
property var activeOutputDevice: printerConnected ? Cura.MachineManager.printerOutputDevices[0] : null
Item