mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 13:03:59 -06:00
Only show online printers in list of printers to sync to
We can only sync with printers that are currently online. We'll just send it to the account to sync with everything. But these are the ones it should arrive with. Contributes to issue CURA-8609.
This commit is contained in:
parent
07b2c1b777
commit
a7f172d836
1 changed files with 2 additions and 1 deletions
|
@ -247,7 +247,7 @@ Window
|
|||
}
|
||||
|
||||
source: UM.Theme.getIcon("CloudBadge", "low")
|
||||
color: model.isOnline ? UM.Theme.getColor("primary") : UM.Theme.getColor("cloud_unavailable")
|
||||
color: UM.Theme.getColor("primary")
|
||||
|
||||
//Make a themeable circle in the background so we can change it in other themes.
|
||||
Rectangle
|
||||
|
@ -523,6 +523,7 @@ Window
|
|||
{
|
||||
id: cloudPrinterList
|
||||
filterConnectionType: 3 //Only show cloud connections.
|
||||
filterOnlineOnly: true //Only show printers that are online.
|
||||
}
|
||||
|
||||
FileDialog
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue