Browse Source

wxGUI/location wizard: resizable border

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47003 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 years ago
parent
commit
ad113de2d9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      gui/wxpython/gui_modules/location_wizard.py

+ 2 - 2
gui/wxpython/gui_modules/location_wizard.py

@@ -22,7 +22,7 @@ Classes:
  - LocationWizard
  - SelectTransformDialog
 
-(C) 2007-2010 by the GRASS Development Team
+(C) 2007-2011 by the GRASS Development Team
 
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.
@@ -1748,7 +1748,7 @@ class LocationWizard(wx.Object):
         # define wizard pages
         #
         self.wizard = wiz.Wizard(parent, id = wx.ID_ANY, title = _("Define new GRASS Location"),
-                                 bitmap = wizbmp)
+                                 bitmap = wizbmp, style = wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER)
         self.startpage = DatabasePage(self.wizard, self, grassdatabase)
         self.csystemspage = CoordinateSystemPage(self.wizard, self)
         self.projpage = ProjectionsPage(self.wizard, self)