summaryrefslogtreecommitdiff
path: root/remove-snippets-from-home.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-24 22:23:52 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-24 22:23:52 -0400
commit2e02bfdbb7f225e3619317be008f4429724003f9 (patch)
treef8c63b10b13f32db62785de2bd0fcc839ad9472b /remove-snippets-from-home.patch
parentUpdated to 100.0.2 (diff)
downloadlibrewolf-fedora-ff-2e02bfdbb7f225e3619317be008f4429724003f9.tar.gz
librewolf-fedora-ff-2e02bfdbb7f225e3619317be008f4429724003f9.tar.bz2
librewolf-fedora-ff-2e02bfdbb7f225e3619317be008f4429724003f9.zip
librewolf 100.0.2 rc1b100.0.2
Diffstat (limited to 'remove-snippets-from-home.patch')
-rw-r--r--remove-snippets-from-home.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/remove-snippets-from-home.patch b/remove-snippets-from-home.patch
new file mode 100644
index 0000000..4bd88ca
--- /dev/null
+++ b/remove-snippets-from-home.patch
@@ -0,0 +1,22 @@
+--- a/browser/components/newtab/lib/AboutPreferences.jsm
++++ b/browser/components/newtab/lib/AboutPreferences.jsm
+@@ -54,18 +54,7 @@
+ },
+ ];
+
+-const PREFS_AFTER_SECTIONS = () => [
+- {
+- id: "snippets",
+- pref: {
+- feed: "feeds.snippets",
+- titleString: "home-prefs-snippets-header",
+- descString: "home-prefs-snippets-description-new",
+- },
+- icon: "chrome://global/skin/icons/info.svg",
+- eventSource: "SNIPPETS",
+- },
+-];
++const PREFS_AFTER_SECTIONS = () => [];
+
+ this.AboutPreferences = class AboutPreferences {
+ init() {
bgstack15