From 921bb570093a2bf6205e1488adbccf396c0c876c Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 26 Jun 2013 08:11:47 +0200 Subject: [PATCH] Make serial port detection also work if the port is configured on a none-auto-detect port. --- Cura/util/machineCom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py index aae99eb2..64404c0f 100644 --- a/Cura/util/machineCom.py +++ b/Cura/util/machineCom.py @@ -56,7 +56,7 @@ def machineIsConnected(): if port == 'AUTO': return len(serialList(True)) > 0 if platform.system() == "Windows": - return port in serialList(True) + return port in serialList() return os.path.isfile(port) def baudrateList(): -- 2.30.2