fixed HUGE, obscure treelist bug - LVS_SHAREIMAGELISTS needs to be set

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4054 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2011-01-27 08:50:23 +00:00
parent 242275a577
commit 4496243e3d
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -14,6 +14,8 @@ Process Hacker
* Hang when setting DEP status of a terminating process
* Encoding bug in NetworkTools plugin
* LSA interfacing issues
* Rare modules list crashes
* Creating dumps of self
2.10
* NEW/IMPROVED:
+2 -2
View File
@@ -233,8 +233,8 @@ LRESULT CALLBACK PhpTreeListWndProc(
context->Handle = hwnd;
style = WS_CHILD | LVS_REPORT | LVS_OWNERDATA | LVS_SHOWSELALWAYS |
WS_VISIBLE | WS_CLIPSIBLINGS;
style = WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE |
LVS_REPORT | LVS_OWNERDATA | LVS_SHOWSELALWAYS | LVS_SHAREIMAGELISTS;
exStyle = 0;
if (createStruct->style & TLSTYLE_BORDER)