This commit is contained in:
Your Name
2024-04-27 15:51:50 -05:00
parent b6e1ed1d06
commit 38238548a9
6 changed files with 8 additions and 7 deletions

View File

@@ -44,7 +44,7 @@ bool checkNNFFLogFileExists(const std::string &carFingerprint) {
FrogPilotControlsPanel::FrogPilotControlsPanel(SettingsWindow *parent) : FrogPilotListWidget(parent) {
std::string branch = params.get("GitBranch");
isRelease = branch == "FrogPilot";
isRelease = branch == "clearpilot";
const std::vector<std::tuple<QString, QString, QString, QString>> controlToggles {
{"Tuning", tr("Tuning"), tr(""), "../assets/offroad/icon_settings.png"},

View File

@@ -2,7 +2,8 @@
FrogPilotVisualsPanel::FrogPilotVisualsPanel(SettingsWindow *parent) : FrogPilotListWidget(parent) {
std::string branch = params.get("GitBranch");
isRelease = branch == "FrogPilot";
// CLEARPILOT
isRelease = branch == "clearpilot";
const std::vector<std::tuple<QString, QString, QString, QString>> visualToggles {
{"AlertVolumeControl", tr("Alert Volume Controller"), tr("Control the volume level for each individual sound in openpilot."), "../frogpilot/assets/toggle_icons/icon_mute.png"},