From 427b24a34d02e6338bf6a8387c5b90466e255472 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 7 Jan 2010 14:57:37 +0000 Subject: [PATCH] Allow notebook to expand; remove unneeded table (leftover?) svn: r13987 --- src/PluginUtils/_PluginWindows.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/PluginUtils/_PluginWindows.py b/src/PluginUtils/_PluginWindows.py index ee82e6cb0..2bcf84b77 100644 --- a/src/PluginUtils/_PluginWindows.py +++ b/src/PluginUtils/_PluginWindows.py @@ -403,12 +403,12 @@ class ToolManagedWindowBase(ManagedWindow.ManagedWindow): self.setup_title() self.setup_header() - self.tbl = gtk.Table(4, 4, False) - self.tbl.set_col_spacings(12) - self.tbl.set_row_spacings(6) - self.tbl.set_border_width(6) - self.col = 0 - self.window.vbox.add(self.tbl) + #self.tbl = gtk.Table(4, 4, False) + #self.tbl.set_col_spacings(12) + #self.tbl.set_row_spacings(6) + #self.tbl.set_border_width(6) + #self.col = 0 + #self.window.vbox.add(self.tbl) # Build the list of widgets that are used to extend the Options # frame and to create other frames @@ -559,7 +559,7 @@ class ToolManagedWindowBase(ManagedWindow.ManagedWindow): title = self.get_header(self.get_title()) label = gtk.Label('%s' % title) label.set_use_markup(True) - self.window.vbox.pack_start(label, True, True, self.border_pad) + self.window.vbox.pack_start(label, False, False, self.border_pad) def add_frame_option(self, frame_name, label_text, widget): """Similar to add_option this method takes a frame_name, a