Skip to content

Commit e8af0e8

Browse files
committed
merge master
1 parent 408a6ed commit e8af0e8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

system/ui/lib/application.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -480,13 +480,12 @@ def big_ui() -> bool:
480480

481481

482482
# Lazy factory to create the app
483-
def _create_gui_app(width=2160, height=1080):
483+
def _create_gui_app(width=None, height=None):
484484
is_release = Params().get_bool("IsReleaseBranch")
485485
if not is_release:
486486
from openpilot.system.ui.lib.debug_application import DebugGuiApplication
487487
return DebugGuiApplication(width, height)
488488

489489
return GuiApplication(width, height)
490490

491-
gui_app = GuiApplication()
492-
gui_app = _create_gui_app(2160, 1080)
491+
gui_app = _create_gui_app()

0 commit comments

Comments
 (0)