Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/browser/components/downloads/DownloadsTaskbar-sys-mjs.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
diff --git a/browser/components/downloads/DownloadsTaskbar.sys.mjs b/browser/components/downloads/DownloadsTaskbar.sys.mjs
--- a/browser/components/downloads/DownloadsTaskbar.sys.mjs
+++ b/browser/components/downloads/DownloadsTaskbar.sys.mjs
@@ -140,6 +140,16 @@
(!aForcedBackend && gInterfaces.macTaskbarProgress)
) {
// On Mac OS X, we have to register the global indicator only once.
+ // Skip if dock progress is disabled (workaround for macOS Tahoe
+ // Clear icon style reverting to coloured). See Bug 1997246.
+ if (
+ !Services.prefs.getBoolPref(
+ "browser.taskbar.dockProgress.enabled",
+ true
+ )
+ ) {
+ return;
+ }
this.#taskbarProgresses.add(gInterfaces.macTaskbarProgress);
// Free the XPCOM reference on shutdown, to prevent detecting a leak.
Services.obs.addObserver(() => {