Fixed an issue causing the IDE to crash when sending a new tab command to an already started eric7 browser. eric7

Tue, 03 Sep 2024 16:45:12 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 03 Sep 2024 16:45:12 +0200
branch
eric7
changeset 10905
487adcd8dfa7
parent 10904
0dc0cf49d393
child 10906
a398053bede2

Fixed an issue causing the IDE to crash when sending a new tab command to an already started eric7 browser.

src/eric7/UI/UserInterface.py file | annotate | diff | comparison | revisions
--- a/src/eric7/UI/UserInterface.py	Sat Aug 31 19:27:43 2024 +0200
+++ b/src/eric7/UI/UserInterface.py	Tue Sep 03 16:45:12 2024 +0200
@@ -7202,7 +7202,7 @@
             self.__webBrowserProcess = process
 
         else:
-            clientArgs.append("--newtab={0}".format(home))
+            clientArgs.append("--new-tab={0}".format(home))
 
         if clientArgs and self.__webBrowserClient:
             args = WebBrowserArgumentsCreator.createArgparseNamespace(clientArgs)

eric ide

mercurial