Jelajahi Sumber

wxGUI: remove extra StaticBox from layout

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@43133 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 tahun lalu
induk
melakukan
0ae72d9ba6
1 mengubah file dengan 1 tambahan dan 3 penghapusan
  1. 1 3
      gui/wxpython/gui_modules/ghelp.py

+ 1 - 3
gui/wxpython/gui_modules/ghelp.py

@@ -768,8 +768,6 @@ class InstallExtensionWindow(wx.Frame):
 
         self.repoBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
                                     label=" %s " % _("Repository"))
-        self.findBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
-                                    label=" %s " % _("Find extension by"))
         self.treeBox = wx.StaticBox(parent = self.panel, id = wx.ID_ANY,
                                     label=" %s " % _("List of extensions"))
         
@@ -818,7 +816,7 @@ class InstallExtensionWindow(wx.Frame):
                       flag = wx.EXPAND)
         repoSizer.Add(item = self.fullDesc)
         
-        findSizer = wx.StaticBoxSizer(self.findBox, wx.HORIZONTAL)
+        findSizer = wx.BoxSizer(wx.HORIZONTAL)
         findSizer.Add(item = self.search, proportion = 1)
         
         treeSizer = wx.StaticBoxSizer(self.treeBox, wx.HORIZONTAL)