Fixing bug in closing notification
This commit is contained in:
parent
901c7b626d
commit
789fd2a3d6
|
@ -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
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue