Fixed an issue in the MicroPython window class preventing the standalone MPy application to start. eric7

Wed, 09 Oct 2024 17:20:35 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 09 Oct 2024 17:20:35 +0200
branch
eric7
changeset 10960
8b23bcae1f81
parent 10959
377ef1594e36
child 10961
7bbf95f41266

Fixed an issue in the MicroPython window class preventing the standalone MPy application to start.

src/eric7/MicroPython/MicroPythonWindow.py file | annotate | diff | comparison | revisions
--- a/src/eric7/MicroPython/MicroPythonWindow.py	Wed Oct 09 15:48:08 2024 +0200
+++ b/src/eric7/MicroPython/MicroPythonWindow.py	Wed Oct 09 17:20:35 2024 +0200
@@ -103,7 +103,7 @@
         ericApp().focusChanged.connect(self.__appFocusChanged)
 
         # network related setup
-        if EricPreferences.getUI("UseSystemProxy"):
+        if EricPreferences.getNetworkProxy("UseSystemProxy"):
             QNetworkProxyFactory.setUseSystemConfiguration(True)
         else:
             self.__proxyFactory = EricNetworkProxyFactory()

eric ide

mercurial