mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
[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:
parent
2a2df969b0
commit
2d0182345a
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue