Fix search/nav button offline behavior

This commit is contained in:
stopflock
2025-12-04 19:08:18 -06:00
parent 473d65c83e
commit cc1a335a49
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ class MapOverlays extends StatelessWidget {
children: [
// Search/Navigation button - show search button always, show route button only in dev mode when online
if (onSearchPressed != null) ...[
if (appState.showSearchButton || (enableNavigationFeatures(offlineMode: appState.offlineMode) && appState.showRouteButton)) ...[
if ((!appState.offlineMode && appState.showSearchButton) || appState.showRouteButton) ...[
FloatingActionButton(
mini: true,
heroTag: "search_nav",