summaryrefslogtreecommitdiff
path: root/debian/patches/fix-gnome-version-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/fix-gnome-version-check.patch')
-rw-r--r--debian/patches/fix-gnome-version-check.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/fix-gnome-version-check.patch b/debian/patches/fix-gnome-version-check.patch
deleted file mode 100644
index 124b729..0000000
--- a/debian/patches/fix-gnome-version-check.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From: Bartosz Jaroszewski <b.jarosze@gmail.com>
-Date: Sun, 7 Jun 2020 15:41:25 +0200
-Subject: fix gnome version check
-
----
- ui.js | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/ui.js b/ui.js
-index b2dc363..5b703fa 100644
---- a/ui.js
-+++ b/ui.js
-@@ -167,7 +167,7 @@ var PopupBluetoothDeviceMenuItem = GObject.registerClass(
- }
-
- _isOldGnome() {
-- return Config.PACKAGE_VERSION.match(/3\.3[24]/);
-+ return Config.PACKAGE_VERSION.startsWith('3.34');
- }
- }
- );