From 36c937c6ba37c8e3e5250974a1a20fb5a60e7557 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 19 Apr 2014 08:20:32 +0530 Subject: [PATCH] Allow tab key navigation in the word list --- src/calibre/gui2/tweak_book/spell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/tweak_book/spell.py b/src/calibre/gui2/tweak_book/spell.py index abe0fe835a..ffb055c3b3 100644 --- a/src/calibre/gui2/tweak_book/spell.py +++ b/src/calibre/gui2/tweak_book/spell.py @@ -752,6 +752,7 @@ class SpellCheck(Dialog): hh = self.words_view.horizontalHeader() w.setSortingEnabled(True), w.setShowGrid(False), w.setAlternatingRowColors(True) w.setSelectionBehavior(w.SelectRows), w.setSelectionMode(w.SingleSelection) + w.setTabKeyNavigation(False) w.verticalHeader().close() h.addWidget(w) self.words_model = m = WordsModel(self)