Browse Source

wxGUI: fix last commit

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@53007 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 12 years ago
parent
commit
431459a1ec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/location_wizard/dialogs.py

+ 1 - 1
gui/wxpython/location_wizard/dialogs.py

@@ -37,7 +37,7 @@ class RegionDef(BaseClass, wx.Dialog):
     """
     def __init__(self, parent, id = wx.ID_ANY, size = (800, 600),
                  title = _("Set default region extent and resolution"), location = None):
-        wx.Dialog.__init__(self, parent, id, title)
+        wx.Dialog.__init__(self, parent, id, title, size = size)
         panel = wx.Panel(self, id = wx.ID_ANY)
         
         self.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))