allow TAB key to navigate through encounter table widget

This commit is contained in:
garakmon 2020-04-08 22:12:20 -04:00
parent 3ff5483267
commit d3c212edb3

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);
}