فهرست منبع

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
         """
-        if self.coordsField.GetValidator().Validate():
+        if self.coordsField.GetValidator().Validate(self):
             return self.coordsField.GetValue().split(',')
 
         return None