From f100fa6cfe024cd6354a1ab1bce4df2a7b9e9b53 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 29 Nov 2007 15:38:10 +0000 Subject: [PATCH] Remove initial setup code, since we now default to a single terminal --- terminator | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/terminator b/terminator index 63cbfdc5..442811e3 100755 --- a/terminator +++ b/terminator @@ -378,18 +378,6 @@ class Terminator: self.window.add (term.get_box ()) self.window.show_all () - # For some unknown reason, spawning 4 terminals at the speed python executes on my laptop causes them all to hang, so we will make one, wait a second and then split ourselves, which works fine. Weird. - # FIXME: Until we have proper configs I'm going to disable this default splitting - #gobject.timeout_add (1000, self.do_initial_setup, term) - - def do_initial_setup (self, term): - term2 = self.splitaxis (term, True) - self.splitaxis (term, False) - self.splitaxis (term2, False) - # Give focus to the first terminal - term._vte.grab_focus () - return (False) - def on_delete_event (self, widget, event, data=None): if len (self.term_list) == 1: return False