Browse Source

wxGUI: fix calling coordselect validator (#1455)

Anna Petrasova 4 years ago
parent
commit
c2335cdcbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_core/gselect.py

+ 1 - 1
gui/wxpython/gui_core/gselect.py

@@ -2464,7 +2464,7 @@ class CoordinatesSelect(Panel):
 
         :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