From 8e5dbb78a4f00a66294798de811a48e147aa55ea Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Sat, 1 Oct 2016 13:07:55 +0200 Subject: [PATCH] Don't connect to a printer if we don't have its properties yet CURA-2483 --- DiscoverUM3Action.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscoverUM3Action.qml b/DiscoverUM3Action.qml index bb00588cb3..a6ba96ab2a 100644 --- a/DiscoverUM3Action.qml +++ b/DiscoverUM3Action.qml @@ -30,7 +30,7 @@ Cura.MachineAction function connectToPrinter() { - if(base.selectedPrinter) + if(base.selectedPrinter && base.completeProperties) { var printerKey = base.selectedPrinter.getKey() if(connectingToPrinter != printerKey) {