Skip to content

Commit

Permalink
Call the edit callback after a delete.
Browse files Browse the repository at this point in the history
  • Loading branch information
typesupply committed Dec 20, 2023
1 parent d3e0365 commit d4c0085
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Lib/vanilla/vanillaList2.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,8 @@ def _keyDown(self, event):
return True
elif self._enableDelete:
self.removeSelection()
if self._editCallback is not None:
self._editCallback(self)
return True
return False

Expand Down

0 comments on commit d4c0085

Please sign in to comment.