mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 18:39:07 +08: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
@ -247,7 +247,7 @@ Window
|
|||||||
}
|
}
|
||||||
|
|
||||||
source: UM.Theme.getIcon("CloudBadge", "low")
|
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.
|
//Make a themeable circle in the background so we can change it in other themes.
|
||||||
Rectangle
|
Rectangle
|
||||||
@ -523,6 +523,7 @@ Window
|
|||||||
{
|
{
|
||||||
id: cloudPrinterList
|
id: cloudPrinterList
|
||||||
filterConnectionType: 3 //Only show cloud connections.
|
filterConnectionType: 3 //Only show cloud connections.
|
||||||
|
filterOnlineOnly: true //Only show printers that are online.
|
||||||
}
|
}
|
||||||
|
|
||||||
FileDialog
|
FileDialog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user