Skip to content

Commit

Permalink
wxGUI: fix calling coordselect validator (#1455)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa committed Mar 23, 2021
1 parent 5a2b8ea commit c2335cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/gui_core/gselect.py
Original file line number Diff line number Diff line change
Expand Up @@ -2464,7 +2464,7 @@ def _getCoords(self):
:return: None if values are not valid
"""
if self.coordsField.GetValidator().Validate():
if self.coordsField.GetValidator().Validate(self):
return self.coordsField.GetValue().split(',')

return None
Expand Down

0 comments on commit c2335cd

Please sign in to comment.