From b5c1aa41290d568f60e1bcd9a6b4e880b3bc3d38 Mon Sep 17 00:00:00 2001 From: Phil Eaton Date: Fri, 6 Jul 2018 22:35:39 -0400 Subject: [PATCH] [RAPPS] Deselect apps after installing I found it unintuitive that each time I selected some software for installation, it wasn't automatically deselected after installation. I kept re-triggering the same installation a few times before I realized I had to manually uncheck the checked packages. --- base/applications/rapps/gui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/base/applications/rapps/gui.cpp b/base/applications/rapps/gui.cpp index 1b715b6d8b3..dca702fc9f3 100644 --- a/base/applications/rapps/gui.cpp +++ b/base/applications/rapps/gui.cpp @@ -1467,6 +1467,7 @@ private: { CDownloadManager::DownloadListOfApplications(m_AvailableApps.GetSelected()); UpdateApplicationsList(-1); + m_ListView->SetSelected(-1, FALSE); } else if (CDownloadManager::DownloadApplication(m_ListView->GetSelectedData())) { -- 2.17.1