Remove the default_setup function, it's very broken

This commit is contained in:
Chris Jones 2009-08-19 19:00:47 +01:00
parent 428f931bf3
commit 326bb4fa94
1 changed files with 0 additions and 11 deletions

View File

@ -45,8 +45,6 @@ class Window(Container, gtk.Window):
self.register_callbacks()
self.apply_config()
self.default_setup()
def register_callbacks(self):
"""Connect the GTK+ signals we care about"""
self.connect('key-press-event', self.on_key_press)
@ -92,15 +90,6 @@ class Window(Container, gtk.Window):
self.set_icon(icon)
def default_setup(self):
"""Set up the default child widget"""
terminal = self.terminator.new_terminal()
self.add(terminal)
terminal.hide_titlebar()
self.show()
terminal.spawn_child()
def on_key_press(self, window, event):
"""Handle a keyboard event"""
pass