diff --git a/Common-Overrides.md b/Common-Overrides.md index f3b1d3e..1a27d80 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -143,11 +143,12 @@ user_pref("browser.download.useDownloadDir", true); user_pref("browser.download.folderList", 1); ``` -#### Do not show downloads when they're done +#### Do not show when downloads finish installing +Turning off this setting can make it harder to know when a file starts downloading. ```javascript // PREF: disable Downloads panel opening after every download // Control whether to open the downloads panel every time a download begins. -// The first download ever ran in a new profile will still open the panel. +// [NOTE] The first download ever ran in a new profile will still open the panel. user_pref("browser.download.alwaysOpenPanel", false); ```