From 68df26dfca649f72fb09cd367c990ecdc76c4e23 Mon Sep 17 00:00:00 2001 From: SamuelFontes Date: Wed, 7 Aug 2024 21:24:06 -0300 Subject: [PATCH] qt_gui: Refreshing game list after install directory change The game list wasn't being refreshed automaticly after a manual directory change on the QT GUI, now the RefreshGameTable will be called after the GameInstallDialog is executed. --- src/qt_gui/main_window.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index b3778be07..4d72ec15b 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -577,6 +577,7 @@ void MainWindow::InstallDragDropPkg(std::filesystem::path file, int pkgNum, int void MainWindow::InstallDirectory() { GameInstallDialog dlg; dlg.exec(); + RefreshGameTable(); } void MainWindow::SetLastUsedTheme() {