Example #1
0
 def cleanup(self):
     NotifierBase.cleanup(self)
     self.notification_center.removeAllDeliveredNotifications()
Example #2
0
 def cleanup(self):
     popups = tuple(self._notify_stack)
     self._notify_stack = []
     for x in popups:
         x.hide_notification()
     NotifierBase.cleanup(self)
Example #3
0
 def cleanup(self):
     nids = list(self.actual_notification_id.items())
     self.actual_notification_id = {}
     for nid, actual_id in nids:
         self.do_close(nid, actual_id)
     NotifierBase.cleanup(self)
Example #4
0
File: gui.py Project: dochench/xpra
 def cleanup(self):
     NotifierBase.cleanup(self)
     GLib.idle_add(self.notification_center.removeAllDeliveredNotifications)