Skip to content

Commit

Permalink
Fix #2092643 [Tab between book list cells is broken](https://bugs.lau…
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Dec 29, 2024
1 parent d26a381 commit 4f17773
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/calibre/gui2/library/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1655,8 +1655,10 @@ def closeEditor(self, editor, hint):
index = self.moveCursor(move_by, Qt.KeyboardModifier.NoModifier)
if index.isValid():
def edit():
self.setCurrentIndex(index)
self.edit(index)
if index.isValid():
self.setCurrentIndex(index)
self.edit(index)
self._model.current_changed(index, None)
QTimer.singleShot(0, edit)
return ans

Expand Down

0 comments on commit 4f17773

Please sign in to comment.