Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-06-26 13:09:03 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-06-26 13:09:03 (GMT)
commit84127380dc6466a4625524dcf1cc6360d09cd006 (patch)
treee7d557c970859121c8a1cab3222822d3b863d163
parent3b9e2c1e7e280e5f1f7a72d684566bfc49a9f7f5 (diff)
Get rid of bitrotten shutdown stuff
-rw-r--r--shell/view/frame/frame.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/shell/view/frame/frame.py b/shell/view/frame/frame.py
index c7c2117..e192b04 100644
--- a/shell/view/frame/frame.py
+++ b/shell/view/frame/frame.py
@@ -151,9 +151,6 @@ class Frame(object):
self._left_panel = self._create_left_panel()
self._right_panel = self._create_right_panel()
- shell.get_model().connect('notify::state',
- self._shell_state_changed_cb)
-
screen = gtk.gdk.screen_get_default()
screen.connect('size-changed', self._size_changed_cb)
@@ -253,10 +250,6 @@ class Frame(object):
return panel
- def _shell_state_changed_cb(self, model, pspec):
- if model.props.state == ShellModel.STATE_SHUTDOWN:
- self._timeline.goto('slide_out', True)
-
def _create_panel(self, orientation):
panel = FrameWindow(orientation)
self._connect_to_panel(panel)