diff -r e16c8443e877 -r 76dede1e3403 etherlab/ConfigEditor.py --- a/etherlab/ConfigEditor.py Thu Aug 22 12:16:45 2024 +0200 +++ b/etherlab/ConfigEditor.py Sat Sep 07 12:50:57 2024 +0200 @@ -672,7 +672,7 @@ self.ProcessVariablesGrid = CustomGrid(self.EthercatMasterEditor, style=wx.VSCROLL) self.ProcessVariablesGrid.SetMinSize(wx.Size(0, 150)) self.ProcessVariablesGrid.SetDropTarget(ProcessVariableDropTarget(self)) - self.ProcessVariablesGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGING, + self.ProcessVariablesGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGED, self.OnProcessVariablesGridCellChange) self.ProcessVariablesGrid.Bind(wx.grid.EVT_GRID_CELL_LEFT_CLICK, self.OnProcessVariablesGridCellLeftClick) @@ -697,7 +697,7 @@ self.StartupCommandsGrid = CustomGrid(self.EthercatMasterEditor, style=wx.VSCROLL) self.StartupCommandsGrid.SetDropTarget(StartupCommandDropTarget(self)) self.StartupCommandsGrid.SetMinSize(wx.Size(0, 150)) - self.StartupCommandsGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGING, + self.StartupCommandsGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGED, self.OnStartupCommandsGridCellChange) self.StartupCommandsGrid.Bind(wx.grid.EVT_GRID_EDITOR_SHOWN, self.OnStartupCommandsGridEditorShow)