Browse Source

wxGUI: fix layout flag assert in wms dialog (#1764)

Anna Petrasova 3 years ago
parent
commit
d03c8cb72e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/web_services/dialogs.py

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

@@ -1000,7 +1000,7 @@ class SaveWMSLayerDialog(wx.Dialog):
         selSizer.Add(
             sel,
             proportion=1,
-            flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER_VERTICAL,
+            flag=wx.EXPAND | wx.ALL,
             border=5,
         )