From 5e898b9aa89ec80a4234574fb3ee3312f46243be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Thor=C3=A9n?= Date: Mon, 18 Nov 2024 23:07:16 +0100 Subject: [PATCH] Fix bug where onSelect was triggered twice on double click in Recently Opened Files --- mapeditor/mainwindow.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/mapeditor/mainwindow.cpp b/mapeditor/mainwindow.cpp index 22a6ef601..82a402b42 100644 --- a/mapeditor/mainwindow.cpp +++ b/mapeditor/mainwindow.cpp @@ -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();