Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/overlaybox.py
diff options
context:
space:
mode:
authorJustin Gallardo <jirwin@suzy.(none)>2006-12-04 19:12:24 (GMT)
committer Justin Gallardo <jirwin@suzy.(none)>2006-12-04 19:12:24 (GMT)
commitb9f9ef0fe9e36cf6e5de59700154b16f2dae15cd (patch)
tree3d5403ec73e993a78c5e92f8b14a5b86e8b6ae60 /shell/view/frame/overlaybox.py
parentf5ae0662482de14f9d3812ddc4aba9be61024887 (diff)
Changed all tabs to 4 spaces for python style
Diffstat (limited to 'shell/view/frame/overlaybox.py')
-rw-r--r--shell/view/frame/overlaybox.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/view/frame/overlaybox.py b/shell/view/frame/overlaybox.py
index eaa1e5d..406173a 100644
--- a/shell/view/frame/overlaybox.py
+++ b/shell/view/frame/overlaybox.py
@@ -4,15 +4,15 @@ from sugar.graphics import style
from sugar.graphics.canvasicon import CanvasIcon
class OverlayBox(hippo.CanvasBox):
- def __init__(self, shell):
- hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
+ def __init__(self, shell):
+ hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
- self._shell = shell
+ self._shell = shell
- icon = CanvasIcon(icon_name='stock-chat')
- style.apply_stylesheet(icon, 'frame.OverlayIcon')
- icon.connect('activated', self._overlay_clicked_cb)
- self.append(icon)
+ icon = CanvasIcon(icon_name='stock-chat')
+ style.apply_stylesheet(icon, 'frame.OverlayIcon')
+ icon.connect('activated', self._overlay_clicked_cb)
+ self.append(icon)
- def _overlay_clicked_cb(self, item):
- self._shell.toggle_chat_visibility()
+ def _overlay_clicked_cb(self, item):
+ self._shell.toggle_chat_visibility()