1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 07:30:47 +05:30

Remove duplicated lines about autohide downloads (#139)

* Remove duplicated lines about autohide downloads
This commit is contained in:
galantra
2023-01-14 17:18:12 +01:00
committed by GitHub
parent 064f64ab5f
commit ec5d8b7423
+1 -4
View File
@@ -302,7 +302,7 @@ user_pref("extensions.pocket.enabled", false);
// 0=desktop, 1=downloads (default), 2=last used // 0=desktop, 1=downloads (default), 2=last used
//user_pref("browser.download.folderList", 2); //user_pref("browser.download.folderList", 2);
// PREF: Enforce user interaction for security by always asking where to download. // PREF: Enforce user interaction for security by always asking where to download
// [SETTING] General>Downloads>Always ask you where to save files // [SETTING] General>Downloads>Always ask you where to save files
// false=the user is asked what to do // false=the user is asked what to do
user_pref("browser.download.useDownloadDir", false); user_pref("browser.download.useDownloadDir", false);
@@ -314,9 +314,6 @@ user_pref("browser.download.alwaysOpenPanel", false);
// PREF: Disable adding downloads to the system's "recent documents" list // PREF: Disable adding downloads to the system's "recent documents" list
user_pref("browser.download.manager.addToRecentDocs", false); user_pref("browser.download.manager.addToRecentDocs", false);
// PREF: Autohide download button
//user_pref("browser.download.autohideButton", true); // DEFAULT
// PREF: enable user interaction for security by always asking how to handle new mimetypes // PREF: enable user interaction for security by always asking how to handle new mimetypes
// [SETTING] General>Files and Applications>What should Firefox do with other files // [SETTING] General>Files and Applications>What should Firefox do with other files
user_pref("browser.download.always_ask_before_handling_new_types", true); user_pref("browser.download.always_ask_before_handling_new_types", true);