BigUI WIP: Delete Stuff

This commit is contained in:
firestarsdog
2026-06-01 02:47:29 -04:00
parent b178e67ae5
commit 7f5e78fd8f
@@ -230,12 +230,7 @@ class StarPilotLongitudinalLayout(_SettingsPage):
on_click=lambda: self._show_slider("CustomCruiseLong", 1, 100, unit=" mph",
current_value=max(1, self._params.get_int("CustomCruiseLong"))),
visible=lambda: self._params.get_bool("QOLLongitudinal")),
SettingRow("ReverseCruise", "toggle", tr_noop("Reverse Cruise"),
subtitle="",
get_state=lambda: self._params.get_bool("ReverseCruise"),
set_state=lambda s: self._params.put_bool("ReverseCruise", s),
visible=lambda: self._params.get_bool("QOLLongitudinal")),
SettingRow("ForceStops", "toggle", tr_noop("Force Stops"),
SettingRow("ForceStops", "toggle", tr_noop("Force Stops"),
subtitle="",
get_state=lambda: self._params.get_bool("ForceStops"),
set_state=lambda s: self._params.put_bool("ForceStops", s),
@@ -351,11 +346,6 @@ class StarPilotLongitudinalTuneLayout(_SettingsPage):
visible=self._longitudinal_enabled),
]),
SettingSection(tr_noop("Human-Like Driving"), [
SettingRow("HumanAcceleration", "toggle", tr_noop("Human-Like Acceleration"),
subtitle=tr_noop("Smooth throttle at low speed with stronger takeoff from a stop."),
get_state=lambda: self._params.get_bool("HumanAcceleration"),
set_state=lambda s: self._params.put_bool("HumanAcceleration", s),
visible=self._longitudinal_enabled),
SettingRow("CoastUpToLeads", "toggle", tr_noop("Coast Up To Leads"),
subtitle=tr_noop("Keep optional far-lead comfort logic on. Recommended unless your car shows lead-follow stutter or springy gas/brake behavior."),
get_state=lambda: self._params.get_bool("CoastUpToLeads"),
@@ -377,11 +367,6 @@ class StarPilotLongitudinalTuneLayout(_SettingsPage):
visible=self._longitudinal_enabled),
], column_pair="detection_tune"),
SettingSection(tr_noop("Tuning"), [
SettingRow("TacoTune", "toggle", tr_noop("Taco Bell Run Turn Speed Hack"),
subtitle=tr_noop("Slow down more assertively for turns."),
get_state=lambda: self._params.get_bool("TacoTune"),
set_state=lambda s: self._params.put_bool("TacoTune", s),
visible=self._longitudinal_enabled),
SettingRow("NavLongitudinalAllowed", "toggle", tr_noop("Use Route Speed Control"),
subtitle=tr_noop("Allow an active navigation route to reduce cruise speed for upcoming turns, ramps, and roundabouts."),
get_state=lambda: self._params.get_bool("NavLongitudinalAllowed"),