Skip to content

Commit

Permalink
wxGUI/datacatalog: Fix layout flag in reprojection dialog for wx 4.1.0 (
Browse files Browse the repository at this point in the history
  • Loading branch information
nilason committed Jul 19, 2020
1 parent 28eee3a commit fb93258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/datacatalog/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _doLayout(self):
label = _("Map layer <{ml}> needs to be reprojected.\n"
"Please review and modify reprojection parameters:").format(ml=self.iLayer)
dialogSizer.Add(StaticText(self.panel, label=label),
flag=wx.ALL | wx.ALIGN_CENTER_VERTICAL | wx.EXPAND, border=10)
flag=wx.ALL | wx.EXPAND, border=10)
if self.etype == 'raster':
optionsSizer.Add(StaticText(self.panel, label=_("Estimated resolution:")),
pos=(0, 0), flag=wx.EXPAND | wx.ALIGN_CENTER_VERTICAL)
Expand Down

0 comments on commit fb93258

Please sign in to comment.