From 9d2eee3b0128a6cc8141d289dc0fa4554f5ddd10 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Mon, 3 Mar 2014 11:19:32 -0500 Subject: [PATCH] Removing sizing hack now that dialog sizing is correct --- gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py b/gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py index 225f42a93..39b09b301 100644 --- a/gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py +++ b/gui/builtinPreferenceViews/pyfaHTMLExportPreferences.py @@ -50,8 +50,6 @@ class PFHTMLExportPref ( PreferenceView): self.fileSelectButton.Bind(wx.EVT_BUTTON, self.selectHTMLExportFilePath) mainSizer.Add( self.fileSelectButton, 0, wx.ALL|wx.ALIGN_CENTER_VERTICAL, 5) - # Quick and dirty hack to size the dialog in a nice way. This will have to change with more pages/content - mainSizer.AddSpacer( ( 0, 30), 1, wx.EXPAND, 5 ) panel.SetSizer( mainSizer ) panel.Layout()