Merge pull request #201 from garakmon/tabbing

allow TAB key to navigate through encounter table widget
This commit is contained in:
garak
2020-04-08 22:13:03 -04:00
committed by GitHub

View File

@@ -30,6 +30,7 @@ void MonTabWidget::populate() {
table->setEditTriggers(QAbstractItemView::NoEditTriggers);
table->setFocusPolicy(Qt::NoFocus);
table->setSelectionMode(QAbstractItemView::NoSelection);
table->setTabKeyNavigation(false);
table->clearFocus();
addTab(table, field.name);
}