# HG changeset patch # User Edouard Tisserant # Date 1524143003 -7200 # Node ID 12b20698e4f3cfe6e5c10661b72158cfdc68e007 # Parent d9e8fb47340f13b71e4de8609009535b7d1ecdc8# Parent 34a9287b6c7d7ba961eb2c8fcf51098ec7291233 merged Denis change to apply input as we type in CTN configuration forms text fieds diff -r d9e8fb47340f -r 12b20698e4f3 editors/ConfTreeNodeEditor.py --- a/editors/ConfTreeNodeEditor.py Thu Apr 19 14:53:42 2018 +0200 +++ b/editors/ConfTreeNodeEditor.py Thu Apr 19 15:03:23 2018 +0200 @@ -489,6 +489,7 @@ textctrl.ChangeValue(str(element_infos["value"])) callback = self.GetTextCtrlCallBackFunction(textctrl, element_path) textctrl.Bind(wx.EVT_TEXT_ENTER, callback) + textctrl.Bind(wx.EVT_TEXT, callback) textctrl.Bind(wx.EVT_KILL_FOCUS, callback) first = False sizer.Layout()