mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-24 11:21:14 -07:00
Fix warning when there is no current printer
This commit is contained in:
parent
8bd3b7ea9b
commit
029fda72e3
1 changed files with 1 additions and 1 deletions
|
|
@ -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." )
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue