ソースを参照

wxGUI: fix calling coordselect validator (#1455)

Anna Petrasova 4 年 前
コミット
647162b017
1 ファイル変更1 行追加1 行削除
  1. 1 1
      gui/wxpython/gui_core/gselect.py

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

@@ -2463,7 +2463,7 @@ class CoordinatesSelect(Panel):
 
 
         :return: None if values are not valid
         :return: None if values are not valid
         """
         """
-        if self.coordsField.GetValidator().Validate():
+        if self.coordsField.GetValidator().Validate(self):
             return self.coordsField.GetValue().split(',')
             return self.coordsField.GetValue().split(',')
 
 
         return None
         return None