Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wxGUI/image2target: fix showing Ground Control Points settings dialog #3189

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions gui/wxpython/image2target/ii2t_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3117,13 +3117,13 @@ def __CreateSymbologyPage(self, notebook):
parent=panel, id=wx.ID_ANY, label=_("Select source map to display:")
),
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
sizer.Add(
self.srcselection,
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
self.srcselection.SetValue(src_map)
Expand All @@ -3134,13 +3134,13 @@ def __CreateSymbologyPage(self, notebook):
label=_("Select target raster map to display:"),
),
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
sizer.Add(
self.tgtrastselection,
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
self.tgtrastselection.SetValue(tgt_map["raster"])
Expand All @@ -3151,13 +3151,13 @@ def __CreateSymbologyPage(self, notebook):
label=_("Select target vector map to display:"),
),
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
sizer.Add(
self.tgtvectselection,
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
self.tgtvectselection.SetValue(tgt_map["vector"])
Expand Down Expand Up @@ -3223,15 +3223,15 @@ def __CreateRectificationPage(self, notebook):
parent=panel, id=wx.ID_ANY, label=_("Extension for output maps:")
),
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)
self.ext_txt = TextCtrl(parent=panel, id=wx.ID_ANY, value="", size=(350, -1))
self.ext_txt.SetValue(self.parent.extension)
sizer.Add(
self.ext_txt,
proportion=0,
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL | wx.ALL,
flag=wx.ALIGN_LEFT | wx.ALL,
border=5,
)

Expand Down
Loading