]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
tweak config wizard window size
authorrobk-tahoe <robk-tahoe@allmydata.com>
Mon, 28 Jan 2008 21:07:13 +0000 (14:07 -0700)
committerrobk-tahoe <robk-tahoe@allmydata.com>
Mon, 28 Jan 2008 21:07:13 +0000 (14:07 -0700)
adjust the confiwiz frames to display at a size comparable to the innosetup
installer window

src/allmydata/gui/confwiz.py

index 0df6da3e2f2409970b272d80c6764f2b0bf8cfae..9729572a19d13364cdec1cdd1af3a71283c6ff42 100644 (file)
@@ -148,7 +148,7 @@ class LoginFrame(wx.Frame):
         title = 'Allmydata Tahoe Config Wizard'
         wx.Frame.__init__(self, None, -1, title)
         self.app = app
-        self.SetSizeHints(100, 100, 600, 800)
+        self.SetSizeHints(500, 360, 600, 800)
         self.SetIcon(amdicon.getIcon())
         self.Bind(wx.EVT_CLOSE, self.close)
 
@@ -158,7 +158,9 @@ class LoginFrame(wx.Frame):
         self.reg_btn_panel = RegisterButtonPanel(background, app)
         sizer = wx.BoxSizer(wx.VERTICAL)
         background_sizer = wx.BoxSizer(wx.VERTICAL)
-        background_sizer.Add(self.login_panel, 1, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 26)
+        background_sizer.Add(wx.Size(2,2), 10, wx.EXPAND | wx.ALL, 26)
+        background_sizer.Add(self.login_panel, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 26)
+        background_sizer.Add(wx.Size(2,2), 10, wx.EXPAND | wx.ALL, 26)
         background_sizer.Add(self.reg_btn_panel, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 26)
         background.SetSizer(background_sizer)
         sizer.Add(background, 0, wx.EXPAND | wx.ALL, 0)
@@ -176,7 +178,7 @@ class RegisterFrame(wx.Frame):
         title = 'Allmydata Tahoe Config Wizard'
         wx.Frame.__init__(self, None, -1, title)
         self.app = app
-        self.SetSizeHints(100, 100, 600, 800)
+        self.SetSizeHints(500, 360, 600, 800)
         self.SetIcon(amdicon.getIcon())
         self.Bind(wx.EVT_CLOSE, self.close)
 
@@ -185,7 +187,9 @@ class RegisterFrame(wx.Frame):
         self.register_panel = RegisterPanel(background)
         sizer = wx.BoxSizer(wx.VERTICAL)
         background_sizer = wx.BoxSizer(wx.VERTICAL)
+        background_sizer.Add(wx.Size(2,2), 10, wx.EXPAND | wx.ALL, 26)
         background_sizer.Add(self.register_panel, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 26)
+        background_sizer.Add(wx.Size(2,2), 10, wx.EXPAND | wx.ALL, 26)
         background.SetSizer(background_sizer)
         sizer.Add(background, 0, wx.EXPAND | wx.ALL, 0)
         self.SetSizer(sizer)