mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 19:05:51 +08:00
Revert "More agressivly check online printers"
This reverts commit 92b371cd508ebf5102aa5ae979865d2bac591b7e.
This commit is contained in:
parent
ad14e60d26
commit
d97dddcfe2
@ -205,7 +205,11 @@ class MachineManager(QObject):
|
|||||||
ConnectionType.NetworkConnection in machine.configuredConnectionTypes,
|
ConnectionType.NetworkConnection in machine.configuredConnectionTypes,
|
||||||
machines)
|
machines)
|
||||||
if online_only:
|
if online_only:
|
||||||
machines = filter(lambda machine: parseBool(machine.getMetaDataEntry("is_online", False)), machines)
|
# LAN printers can have is_online = False but should still be included,
|
||||||
|
# their online status is only checked when they are the active printer.
|
||||||
|
machines = filter(lambda machine: parseBool(machine.getMetaDataEntry("is_online", False) or
|
||||||
|
ConnectionType.NetworkConnection in machine.configuredConnectionTypes),
|
||||||
|
machines)
|
||||||
|
|
||||||
return list(machines)
|
return list(machines)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user