Merge pull request #622 from RobinD42/fix-issue613

Fix event typename
This commit is contained in:
Robin Dunn
2017-11-18 00:42:12 -06:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -59,6 +59,11 @@ Changes in this release include the following:
* Fix comparing DataViewItem and TreeListItem objects with None. (#595)
* Fix event type name in wx/lib/sheet.py (#613)
4.0.0b2 -- "Hurricanes, Floods, and Forest Fires! Oh My!"

View File

@@ -193,7 +193,7 @@ class CSheet(wx.grid.Grid):
self.Bind(wx.grid.EVT_GRID_RANGE_SELECT, self.OnRangeSelect)
self.Bind(wx.grid.EVT_GRID_ROW_SIZE, self.OnRowSize)
self.Bind(wx.grid.EVT_GRID_COL_SIZE, self.OnColSize)
self.Bind(wx.grid.EVT_GRID_CELL_CHANGE, self.OnCellChange)
self.Bind(wx.grid.EVT_GRID_CELL_CHANGED, self.OnCellChange)
self.Bind(wx.grid.EVT_GRID_SELECT_CELL, self.OnGridSelectCell)
def OnGridSelectCell(self, event):