mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-16 08:40:23 -05:00
DolphinQt/GCMemcardManager: Set ScrollMode::ScrollPerPixel to make scrolling behavior less annoying.
This commit is contained in:
parent
6871428a81
commit
52ef8d3f8d
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user