From bf3170f9d3782daa2ebf4a8f743af554f8ba29bb Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Mon, 16 Jul 2007 00:24:42 +0100 Subject: [PATCH] Add a comment and always maximise our window --- termiator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/termiator.py b/termiator.py index 0e5a3092..83a94d6d 100755 --- a/termiator.py +++ b/termiator.py @@ -13,6 +13,7 @@ class TerminatorTerm: # Our settings # FIXME: Add commandline and/or gconf options to change these + # FIXME: Track profile default command behaviour defaults = { 'profile_dir' : '/apps/gnome-terminal/profiles/', 'profile' : 'Default', @@ -208,6 +209,7 @@ class Terminator: self.window.set_icon (self.icon) self.window.connect ("delete_event", self.on_delete_event) self.window.connect ("destroy", self.on_destroy_event) + self.window.maximize () def on_delete_event (self, widget, event, data=None): dialog = gtk.Dialog ("Quit?", self.window, gtk.DIALOG_MODAL, (gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT, gtk.STOCK_QUIT, gtk.RESPONSE_ACCEPT))