Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/notificationtray.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/frame/notificationtray.py')
-rw-r--r--shell/view/frame/notificationtray.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/shell/view/frame/notificationtray.py b/shell/view/frame/notificationtray.py
index 5fa5123..b304868 100644
--- a/shell/view/frame/notificationtray.py
+++ b/shell/view/frame/notificationtray.py
@@ -3,16 +3,16 @@ import gtk
from _sugar import TrayManager
class NotificationTray(gtk.HBox):
- def __init__(self):
- gtk.HBox.__init__(self)
+ def __init__(self):
+ gtk.HBox.__init__(self)
- self._manager = TrayManager()
- self._manager.connect('tray-icon-added', self._icon_added_cb)
- self._manager.connect('tray-icon-removed', self._icon_removed_cb)
- self._manager.manage_screen(gtk.gdk.screen_get_default())
+ self._manager = TrayManager()
+ self._manager.connect('tray-icon-added', self._icon_added_cb)
+ self._manager.connect('tray-icon-removed', self._icon_removed_cb)
+ self._manager.manage_screen(gtk.gdk.screen_get_default())
- def _icon_added_cb(self, manager, icon):
- self.pack_start(icon, False)
+ def _icon_added_cb(self, manager, icon):
+ self.pack_start(icon, False)
- def _icon_removed_cb(self, manager, icon):
- icon.destroy()
+ def _icon_removed_cb(self, manager, icon):
+ icon.destroy()