Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/labyrinthactivity.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-04-09 10:36:17 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-04-09 10:36:17 (GMT)
commit27bde41faf1cafcd38c0203013ebd83efe7d1e83 (patch)
tree4c96cc543cd53a330be74ca14d3cfa012168b5a6 /labyrinthactivity.py
parent6639d53decb938ce90c6e729521b568986b461aa (diff)
Hide sharing combo
Diffstat (limited to 'labyrinthactivity.py')
-rw-r--r--labyrinthactivity.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/labyrinthactivity.py b/labyrinthactivity.py
index 25e4bab..5d3f29b 100644
--- a/labyrinthactivity.py
+++ b/labyrinthactivity.py
@@ -61,13 +61,6 @@ class LabyrinthActivity(activity.Activity):
edit_toolbar.copy.get_palette().menu.append(menu_item)
edit_toolbar.paste.connect('clicked', self.__paste_cb)
- # FIXME: Why is the share item now staying visible, this code
- # was hiding it just fine before.
- activity_toolbar = toolbox.get_activity_toolbar()
- activity_toolbar.share.props.visible = False
-
- self.clipboard = gtk.Clipboard()
-
self.mods = [None] * 4
self.mods[0] = RadioToolButton(named_icon='select-mode')
@@ -151,7 +144,6 @@ class LabyrinthActivity(activity.Activity):
edit_toolbar.undo.child,
edit_toolbar.redo.child)
self._undo.block ()
-
self._main_area = MMapArea.MMapArea (self._undo)
self._main_area.connect ("doc_save", self.__doc_save_cb)
self._main_area.connect ("set_focus", self.__main_area_focus_cb)
@@ -159,13 +151,16 @@ class LabyrinthActivity(activity.Activity):
self._main_area.connect ("expose_event", self.__expose)
self._main_area.set_mode (self._mode)
self.set_canvas(self._main_area)
+ self._undo.unblock()
- self.set_focus_child (self._main_area)
+ self.show_all()
- self._undo.unblock()
+ activity_toolbar = toolbox.get_activity_toolbar()
+ activity_toolbar.share.props.visible = False
toolbox.set_current_toolbar(1)
- self.show_all()
+ self.set_focus_child (self._main_area)
+ self.clipboard = gtk.Clipboard()
def __expose(self, widget, event):
"""Create skeleton map at start