From d0693a2df3a21711d85c90051c5cce3344b705e7 Mon Sep 17 00:00:00 2001 From: Emmanuel Bretelle Date: Sun, 2 Nov 2008 03:06:35 +0100 Subject: [PATCH] attempting to nicify the profile editor --- terminatorlib/prefs_profile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminatorlib/prefs_profile.py b/terminatorlib/prefs_profile.py index 85479fcb..d63e5c0f 100644 --- a/terminatorlib/prefs_profile.py +++ b/terminatorlib/prefs_profile.py @@ -176,8 +176,8 @@ class ProfileEditor: if hasattr(widget, 'set_tooltip_text') and self.data.has_key (key): widget.set_tooltip_text (self.data[key][1]) - table.attach (label, 0, 1, row, row + 1) - table.attach (widget, 1, 2, row, row + 1) + table.attach (label, 0, 1, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL) + table.attach (widget, 1, 2, row, row + 1, gtk.EXPAND|gtk.FILL, gtk.FILL) row += 1 return (table)