mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Don't connect to a printer if we don't have its properties yet
CURA-2483
This commit is contained in:
parent
4f9eeb6be6
commit
8e5dbb78a4
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ Cura.MachineAction
|
|||
|
||||
function connectToPrinter()
|
||||
{
|
||||
if(base.selectedPrinter)
|
||||
if(base.selectedPrinter && base.completeProperties)
|
||||
{
|
||||
var printerKey = base.selectedPrinter.getKey()
|
||||
if(connectingToPrinter != printerKey) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue