diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 699942ebaf..2051ce1b99 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -205,7 +205,11 @@ class MachineManager(QObject): ConnectionType.NetworkConnection in machine.configuredConnectionTypes, machines) 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)