https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2d0182345a245b5ddcf67e...
commit 2d0182345a245b5ddcf67e94f945901beac22693 Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Mon Sep 16 18:38:33 2024 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Wed Sep 18 12:31:43 2024 +0200
[RAPPS] Don't show the "Description" column for installed applications.
As it currently is, it doesn't provide much useful information. It will be re-enabled later when we support other columns ("Publisher", "Size", "Installed on", ...) and the possibility to show/hide columns. --- base/applications/rapps/appview.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/base/applications/rapps/appview.cpp b/base/applications/rapps/appview.cpp index 03a4fd436fa..76307acace6 100644 --- a/base/applications/rapps/appview.cpp +++ b/base/applications/rapps/appview.cpp @@ -1347,13 +1347,15 @@ CAppsListView::SetDisplayAppType(APPLICATION_VIEW_TYPE AppType)
/* Add columns to ListView */ szText.LoadStringW(IDS_APP_NAME); - AddColumn(ColumnCount++, szText, 250, LVCFMT_LEFT); + AddColumn(ColumnCount++, szText, 368, LVCFMT_LEFT);
szText.LoadStringW(IDS_APP_INST_VERSION); AddColumn(ColumnCount++, szText, 90, LVCFMT_RIGHT);
+#if 0 // This column is not currently useful for installed apps. szText.LoadStringW(IDS_APP_DESCRIPTION); AddColumn(ColumnCount++, szText, 300, LVCFMT_LEFT); +#endif
// Disable checkboxes ShowCheckboxes(false);