diff -r 9c5f835b031e -r 4f78f0e201d9 dialogs/ForceVariableDialog.py --- a/dialogs/ForceVariableDialog.py Thu Feb 14 10:02:58 2019 +0300 +++ b/dialogs/ForceVariableDialog.py Thu Feb 14 10:19:30 2019 +0300 @@ -228,4 +228,7 @@ event.Skip() def GetValue(self): - return GetTypeValue[self.IEC_Type](wx.TextEntryDialog.GetValue(self)) + """ + Return new enforce value of particular type + """ + return GetTypeValue[self.IEC_Type](self.ValueTextCtrl.GetValue())