https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b5c1aa41290d568f60e1bc...
commit b5c1aa41290d568f60e1bcd9a6b4e880b3bc3d38 Author: Phil Eaton philneaton95@gmail.com AuthorDate: Fri Jul 6 22:35:39 2018 -0400 Commit: Alexander Shaposhnikov sanchaez@reactos.org CommitDate: Mon Jul 30 15:01:22 2018 +0300
[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 1b715b6d8b..dca702fc9f 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())) {