From 002a37cdc4dffda59f2e183fa676caeb5dd88a1a Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sat, 22 Mar 2025 16:20:19 -0400 Subject: [PATCH] ui: show branch selector in all branches (#698) --- selfdrive/ui/qt/offroad/software_settings.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/selfdrive/ui/qt/offroad/software_settings.cc b/selfdrive/ui/qt/offroad/software_settings.cc index 9bc3fad3c9..449f3c5203 100644 --- a/selfdrive/ui/qt/offroad/software_settings.cc +++ b/selfdrive/ui/qt/offroad/software_settings.cc @@ -70,9 +70,7 @@ SoftwarePanel::SoftwarePanel(QWidget* parent) : ListWidget(parent) { checkForUpdates(); } }); - if (!params.getBool("IsTestedBranch")) { - addItem(targetBranchBtn); - } + addItem(targetBranchBtn); // uninstall button auto uninstallBtn = new ButtonControl(tr("Uninstall %1").arg(getBrand()), tr("UNINSTALL"));