Allow tab key navigation in the word list

This commit is contained in:
Kovid Goyal 2014-04-19 08:20:32 +05:30
parent b34fcc1daf
commit 36c937c6ba

View File

@ -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)