summaryrefslogtreecommitdiff
path: root/mozilla-1639197.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1639197.patch')
-rw-r--r--mozilla-1639197.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/mozilla-1639197.patch b/mozilla-1639197.patch
new file mode 100644
index 0000000..edb2664
--- /dev/null
+++ b/mozilla-1639197.patch
@@ -0,0 +1,15 @@
+diff --git a/browser/components/shell/nsGNOMEShellDBusHelper.cpp b/browser/components/shell/nsGNOMEShellDBusHelper.cpp
+--- a/browser/components/shell/nsGNOMEShellDBusHelper.cpp
++++ b/browser/components/shell/nsGNOMEShellDBusHelper.cpp
+@@ -285,7 +285,9 @@
+ nsAutoCString gnomeSearchTitle;
+ if (GetGnomeSearchTitle(searchTerm.get(), gnomeSearchTitle)) {
+ appendStringDictionary(aIter, "name", gnomeSearchTitle.get());
+- appendStringDictionary(aIter, "gicon", "org.mozilla.Firefox");
++ // TODO: When running on flatpak/snap we may need to use
++ // icon like org.mozilla.Firefox or so.
++ appendStringDictionary(aIter, "gicon", "firefox");
+ }
+ }
+
+
bgstack15