src/eric7/SystemUtilities/QtUtilities.py

branch
eric7
changeset 10250
09b42174e077
parent 10249
77b4c59c76d9
child 10431
64157aeb0312
--- a/src/eric7/SystemUtilities/QtUtilities.py	Mon Oct 16 19:24:11 2023 +0200
+++ b/src/eric7/SystemUtilities/QtUtilities.py	Mon Oct 16 19:41:27 2023 +0200
@@ -83,7 +83,9 @@
                 if not os.path.exists(binPath):
                     binPath = qtToolsDir
         else:
-            binPath = Preferences.getQt("QtToolsDir")
+            binPath = os.path.join(qtToolsDir, "bin")
+            if not os.path.exists(binPath):
+                binPath = qtToolsDir
         if not os.path.exists(binPath):
             binPath = ""
 

eric ide

mercurial