mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinQt: setTabKeyNavigation(false) on QTableWidget and QTableView.
This commit is contained in:
@ -76,6 +76,7 @@ void BreakpointWidget::CreateWidgets()
|
||||
m_toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
||||
|
||||
m_table = new QTableWidget;
|
||||
m_table->setTabKeyNavigation(false);
|
||||
m_table->setContentsMargins(0, 0, 0, 0);
|
||||
m_table->setColumnCount(5);
|
||||
m_table->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
|
@ -73,6 +73,7 @@ void JITWidget::CreateWidgets()
|
||||
{
|
||||
m_table_widget = new QTableWidget;
|
||||
|
||||
m_table_widget->setTabKeyNavigation(false);
|
||||
m_table_widget->setColumnCount(7);
|
||||
m_table_widget->setHorizontalHeaderLabels(
|
||||
{tr("Address"), tr("PPC Size"), tr("Host Size"),
|
||||
|
@ -69,6 +69,7 @@ void RegisterWidget::showEvent(QShowEvent* event)
|
||||
void RegisterWidget::CreateWidgets()
|
||||
{
|
||||
m_table = new QTableWidget;
|
||||
m_table->setTabKeyNavigation(false);
|
||||
|
||||
m_table->setColumnCount(9);
|
||||
|
||||
|
@ -73,6 +73,7 @@ void WatchWidget::CreateWidgets()
|
||||
m_toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
|
||||
|
||||
m_table = new QTableWidget;
|
||||
m_table->setTabKeyNavigation(false);
|
||||
|
||||
m_table->setContentsMargins(0, 0, 0, 0);
|
||||
m_table->setColumnCount(NUM_COLUMNS);
|
||||
|
Reference in New Issue
Block a user