summaryrefslogtreecommitdiff
path: root/community/ubuntuone-client/fix-notify-hint.patch
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
commit65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch)
treefbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/ubuntuone-client/fix-notify-hint.patch
parentd53c44f055929b18d7d1b25f8367ee5836c435fc (diff)
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/ubuntuone-client/fix-notify-hint.patch')
-rw-r--r--community/ubuntuone-client/fix-notify-hint.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/ubuntuone-client/fix-notify-hint.patch b/community/ubuntuone-client/fix-notify-hint.patch
deleted file mode 100644
index 58a0888ef..000000000
--- a/community/ubuntuone-client/fix-notify-hint.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -Naur ubuntuone-client-4.2.0.orig/ubuntuone/platform/notification/linux.py ubuntuone-client-4.2.0/ubuntuone/platform/notification/linux.py
---- ubuntuone-client-4.2.0.orig/ubuntuone/platform/notification/linux.py 2013-04-01 16:37:48.530956424 +0000
-+++ ubuntuone-client-4.2.0/ubuntuone/platform/notification/linux.py 2013-04-01 16:38:32.333945773 +0000
-@@ -32,7 +32,7 @@
- USE_NOTIFY = False
-
- try:
-- from gi.repository import Notify
-+ from gi.repository import GLib, Notify
- USE_NOTIFY = True
- except ImportError:
- pass
-@@ -67,5 +67,5 @@
- if append:
- self.notification.set_hint_string('x-canonical-append', '')
-
-- self.notification.set_hint_int32('transient', int(True))
-+ self.notification.set_hint('transient', GLib.Variant.new_boolean(1))
- self.notification.show()