Fixing bug in closing notification

This commit is contained in:
Gobinath 2016-10-26 07:33:45 +05:30
parent 901c7b626d
commit 789fd2a3d6
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,6 @@
safeeyes (1.0.7-1) xenial; urgency=medium
safeeyes (1.0.8-1) xenial; urgency=medium
* Fixing bug in Ubuntu MATE environment
* Removing apscheduler dependency

View File

@ -38,7 +38,10 @@ class Notification:
self.notification.show()
def close(self):
self.notification.close()
try:
self.notification.close()
except:
pass
# GLib.idle_add(lambda: self.notification.close())
def quite(self):