1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-08 22:26:51 +02:00

Fix bug where onSelect was triggered twice on double click in Recently Opened Files

This commit is contained in:
Joakim Thorén
2024-11-18 23:07:16 +01:00
parent 7d53150bdb
commit 5e898b9aa8

View File

@@ -488,7 +488,6 @@ void MainWindow::on_actionOpenRecent_triggered()
d.close();
};
connect(&d.listWidget, &QListWidget::itemDoubleClicked, this, onSelect);
connect(&d.listWidget, &QListWidget::itemActivated, this, onSelect);
d.exec();