Fix warning when there is no current printer

This commit is contained in:
fieldOfView 2016-10-04 19:09:10 +02:00
parent 8bd3b7ea9b
commit 029fda72e3

View File

@ -259,7 +259,7 @@ Cura.MachineAction
{
width: parent.width
wrapMode: Text.WordWrap
visible: base.selectedPrinter && !base.completeProperties
visible: base.selectedPrinter != null && !base.completeProperties
text: catalog.i18nc("@label", "The printer at this address has not yet responded." )
}