mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Qt: Fix add button not releasing
This commit is contained in:
@ -128,7 +128,7 @@ void GCMemcardManager::ConnectWidgets()
|
||||
{
|
||||
connect(m_slot_file_edit[slot], &QLineEdit::textChanged, this,
|
||||
[this, slot](const QString& path) { SetSlotFile(slot, path); });
|
||||
connect(m_slot_file_button[slot], &QPushButton::pressed, this,
|
||||
connect(m_slot_file_button[slot], &QPushButton::clicked, this,
|
||||
[this, slot] { SetSlotFileInteractive(slot); });
|
||||
connect(m_slot_table[slot], &QTableWidget::itemSelectionChanged, this,
|
||||
&GCMemcardManager::UpdateActions);
|
||||
|
Reference in New Issue
Block a user