diff --git a/2.x/trunk/CHANGELOG.txt b/2.x/trunk/CHANGELOG.txt index 75a9b0e13..6f861fe3b 100644 --- a/2.x/trunk/CHANGELOG.txt +++ b/2.x/trunk/CHANGELOG.txt @@ -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: diff --git a/2.x/trunk/phlib/treelist.c b/2.x/trunk/phlib/treelist.c index 0c1af5ca8..fa8be2c52 100644 --- a/2.x/trunk/phlib/treelist.c +++ b/2.x/trunk/phlib/treelist.c @@ -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)