mirror of
https://github.com/zen-browser/desktop.git
synced 2026-06-27 21:20:27 +00:00
14 lines
893 B
C++
14 lines
893 B
C++
diff --git a/browser/components/search/SearchOneOffs.sys.mjs b/browser/components/search/SearchOneOffs.sys.mjs
|
|
index ca79f060e2104a56b42b9d813efb3567e183153e..7936263cc7d2796e1ec20dcfd1f14b2add568a64 100644
|
|
--- a/browser/components/search/SearchOneOffs.sys.mjs
|
|
+++ b/browser/components/search/SearchOneOffs.sys.mjs
|
|
@@ -481,7 +481,7 @@ export class SearchOneOffs {
|
|
// For the search-bar, always show the one-off buttons where there is an
|
|
// option to add an engine.
|
|
let addEngineNeeded = isSearchBar && addEngines.length;
|
|
- let hideOneOffs = (await this.willHide()) && !addEngineNeeded;
|
|
+ let hideOneOffs = (await this.willHide()) && !addEngineNeeded || Services.prefs.getBoolPref("zen.urlbar.hide-one-offs");
|
|
|
|
// The _engineInfo cache is used by more consumers, thus it is not a good
|
|
// representation of whether this method already updated the one-off buttons
|