mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #2092643 [Tab between book list cells is broken](https://bugs.launchpad.net/calibre/+bug/2092643)
This commit is contained in:
parent
d26a381a66
commit
4f17773c42
@ -1655,8 +1655,10 @@ class BooksView(QTableView): # {{{
|
||||
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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user