DolphinQt/GCMemcardManager: Set ScrollMode::ScrollPerPixel to make scrolling behavior less annoying.

This commit is contained in:
Jordan Woyak 2026-04-14 11:04:03 -05:00
parent 6871428a81
commit 52ef8d3f8d

View File

@ -133,6 +133,8 @@ void GCMemcardManager::CreateWidgets()
m_slot_create_button[slot] = new NonDefaultQPushButton(tr("&Create..."));
m_slot_table[slot] = new QTableWidget;
m_slot_table[slot]->setTabKeyNavigation(false);
m_slot_table[slot]->setHorizontalScrollMode(QAbstractItemView::ScrollMode::ScrollPerPixel);
m_slot_table[slot]->setVerticalScrollMode(QAbstractItemView::ScrollMode::ScrollPerPixel);
m_slot_stat_label[slot] = new QLabel;
m_slot_table[slot]->setSelectionMode(QAbstractItemView::ExtendedSelection);