mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 16:57:51 -06:00
Add fallback in PrinterOutputDevice for getting address
The fallback gives a warning that it's not implemented. Contributes to issue CURA-3161.
This commit is contained in:
parent
c5655d4d8c
commit
e37d8b949e
2 changed files with 6 additions and 1 deletions
|
@ -43,7 +43,7 @@ Column
|
|||
Label
|
||||
{
|
||||
id: connectedPrinterAddressLabel
|
||||
text: printerConnected ? connectedPrinter.address : ""
|
||||
text: (printerConnected && connectedPrinter.address != null) ? connectedPrinter.address : ""
|
||||
font: UM.Theme.getFont("small")
|
||||
color: UM.Theme.getColor("text_inactive")
|
||||
anchors.left: parent.left
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue