Removed a bunch of flicker from header resizing.
This commit is contained in:
parent
604a07f6e7
commit
9d951dc732
|
@ -451,12 +451,9 @@ abort();}
|
||||||
case WM_NOTIFY:
|
case WM_NOTIFY:
|
||||||
if (nmhdr->hwndFrom == t->header)
|
if (nmhdr->hwndFrom == t->header)
|
||||||
switch (nmhdr->code) {
|
switch (nmhdr->code) {
|
||||||
// TODO are any of these redundant?
|
// I could use HDN_TRACK but wine doesn't emit that
|
||||||
case HDN_BEGINTRACK:
|
|
||||||
case HDN_TRACK:
|
|
||||||
case HDN_ENDTRACK:
|
|
||||||
case HDN_ITEMCHANGING:
|
case HDN_ITEMCHANGING:
|
||||||
case HDN_ITEMCHANGED:
|
case HDN_ITEMCHANGED: // TODO needed?
|
||||||
redrawAll(t);
|
redrawAll(t);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue