From c244a5d4856554e64f206f507d551fad43d8f923 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Sun, 1 Mar 2026 03:41:20 -0800 Subject: [PATCH] Update BigInputDialog to remove default URL Remove default URL from custom software input dialog. --- system/ui/mici_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/ui/mici_setup.py b/system/ui/mici_setup.py index 28da2f1a4..75ea316ec 100755 --- a/system/ui/mici_setup.py +++ b/system/ui/mici_setup.py @@ -623,7 +623,7 @@ class Setup(Widget): gui_app.pop_widgets_to(self._software_selection_page, instant=True) # don't reset sliders self._download(url) - keyboard = BigInputDialog("custom software URL", "openpilot.comma.ai", confirm_callback=handle_keyboard_result) + keyboard = BigInputDialog("custom software URL", confirm_callback=handle_keyboard_result) gui_app.push_widget(keyboard) def _download(self, url: str):