Deprecate disable_triple_click config (#7425)

This commit is contained in:
Jonathan Bennett
2025-07-23 05:57:17 -05:00
committed by GitHub
parent ed0cdefb44
commit 82ddf4732a
3 changed files with 1 additions and 7 deletions

View File

@@ -199,7 +199,7 @@ void ExpressLRSFiveWay::sendKey(input_broker_event key)
void ExpressLRSFiveWay::toggleGPS()
{
#if HAS_GPS && !MESHTASTIC_EXCLUDE_GPS
if (!config.device.disable_triple_click && (gps != nullptr)) {
if (gps != nullptr) {
gps->toggleGpsMode();
screen->startAlert("GPS Toggled");
alerting = true;