IDE: Fix Variable grid ignoring edits. WxPython4 consequence.
--- a/editors/CodeFileEditor.py Mon Apr 15 09:08:09 2024 +0200
+++ b/editors/CodeFileEditor.py Mon Apr 15 09:09:59 2024 +0200
@@ -692,7 +692,7 @@
controls_sizer.Add(button, border=5, flag=wx.BOTTOM)
self.VariablesGrid = CustomGrid(self, style=wx.VSCROLL)
- self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGING, self.OnVariablesGridCellChange)
+ self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_CHANGED, self.OnVariablesGridCellChange)
self.VariablesGrid.Bind(wx.grid.EVT_GRID_CELL_LEFT_CLICK, self.OnVariablesGridCellLeftClick)
self.VariablesGrid.Bind(wx.grid.EVT_GRID_EDITOR_SHOWN, self.OnVariablesGridEditorShown)
main_sizer.Add(self.VariablesGrid, flag=wx.GROW)