diff -r 62b44a7c0a3a -r 226da2e26a84 eric7/eric7.py --- a/eric7/eric7.py Wed Oct 27 20:03:03 2021 +0200 +++ b/eric7/eric7.py Thu Oct 28 18:15:55 2021 +0200 @@ -342,7 +342,6 @@ nocrash = False disablecrash = False disabledPlugins = [] - smallScreen = False if "--no-open" in sys.argv and sys.argv.index("--no-open") < ddindex: sys.argv.remove("--no-open") ddindex -= 1 @@ -358,10 +357,6 @@ sys.argv.remove("--disable-crash") ddindex -= 1 disablecrash = True - if "--small-screen" in sys.argv: - sys.argv.remove("--small-screen") - ddindex -= 1 - smallScreen = True for arg in sys.argv[:]: if ( arg.startswith("--disable-plugin=") and @@ -408,8 +403,8 @@ splash.showMessage( QCoreApplication.translate("eric7", "Generating Main Window...")) mainWindow = UserInterface(app, loc, splash, pluginFile, disabledPlugins, - noopen, nocrash, disablecrash, smallScreen, - restartArgs, originalPathString) + noopen, nocrash, disablecrash, restartArgs, + originalPathString) app.lastWindowClosed.connect(app.quit) mainWindow.show()