summaryrefslogtreecommitdiff
path: root/community/ubuntuone-client/fix-notify-hint.patch
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/ubuntuone-client/fix-notify-hint.patch
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 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()