We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 408a6ed commit e8af0e8Copy full SHA for e8af0e8
system/ui/lib/application.py
@@ -480,13 +480,12 @@ def big_ui() -> bool:
480
481
482
# Lazy factory to create the app
483
-def _create_gui_app(width=2160, height=1080):
+def _create_gui_app(width=None, height=None):
484
is_release = Params().get_bool("IsReleaseBranch")
485
if not is_release:
486
from openpilot.system.ui.lib.debug_application import DebugGuiApplication
487
return DebugGuiApplication(width, height)
488
489
return GuiApplication(width, height)
490
491
-gui_app = GuiApplication()
492
-gui_app = _create_gui_app(2160, 1080)
+gui_app = _create_gui_app()
0 commit comments