editors/CodeFileEditor.py
changeset 3932 62d04933d569
parent 3795 223a91584172
--- 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)