henry pushed to branch tor-browser-153.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: c1b5bd1b by Henry Wilkes at 2026-07-15T10:24:31+00:00 fixup! BB 43864: Modify the urlbar for Base Browser. BB 44439: Remove translate action from urlbar. - - - - - 1 changed file: - browser/components/urlbar/QuickActionsLoaderDefault.sys.mjs Changes: ===================================== browser/components/urlbar/QuickActionsLoaderDefault.sys.mjs ===================================== @@ -318,6 +318,12 @@ const DEFAULT_ACTIONS = { ) ); }, + // Remove the translate action. Bugzilla bug 1989252 means that the actions + // still appears in the full list, despite isVisible being `false`. So we + // explicitly remove it from the list instead. tor-browser#43864. + disabled() { + return !this.isVisible(); + }, onPick: async (_queryContext, controller) => { await lazy.TranslationsParent.openAboutTranslationsPage({ browserWindow: controller.browserWindow, View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c1b5bd1b... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c1b5bd1b... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
henry (@henry)