[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.
This commit is contained in:
Hermès Bélusca-Maïto 2024-09-16 18:38:33 +02:00
parent 2a2df969b0
commit 2d0182345a
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -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);