changeset 168:627e531ca530

Allow subitems to have icons so the container controls will be the same as on OS/2 and Unix.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 27 Nov 2002 16:54:08 +0000
parents 0b3debaa9c6c
children b2211123274e
files win/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/win/dw.c	Tue Nov 26 07:10:37 2002 +0000
+++ b/win/dw.c	Wed Nov 27 16:54:08 2002 +0000
@@ -5601,7 +5601,7 @@
 			SendMessage(handle, LVM_INSERTCOLUMN, (WPARAM)z + l, (LPARAM)&lvc);
 		}
 	}
-	ListView_SetExtendedListViewStyle(handle, LVS_EX_FULLROWSELECT);
+	ListView_SetExtendedListViewStyle(handle, LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES);
 	return TRUE;
 }