From 88ae166e522997afdd5fb1bd65893a30cffb490f Mon Sep 17 00:00:00 2001 From: Fabian Freund Date: Sun, 1 Feb 2026 11:08:30 +0100 Subject: [PATCH] dont show tab action button when bottom navigation toolbar active --- .../presentation/widgets/browser_modules/bottom_app_bar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart index 2e912bb2..1c882013 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/browser_modules/bottom_app_bar.dart @@ -349,7 +349,7 @@ class BrowserTabBar extends HookConsumerWidget { displayedSheet: displayedSheet, showLongPressMenu: true, ), - if (selectedTabId != null) + if (selectedTabId != null && !showContextualToolbar) TabMenu( controller: trippleDotMenuController, selectedTabId: selectedTabId,