Commit in reactos/lib/comctl32 on MAIN | |||
rebar.c | +1 | -1 | 1.10 -> 1.11 |
Always reset AUTO_RESIZE flag on exit from REBAR_ForceResize
diff -u -r1.10 -r1.11 --- rebar.c 16 Apr 2004 20:52:51 -0000 1.10 +++ rebar.c 1 May 2004 21:22:18 -0000 1.11 @@ -1276,6 +1276,7 @@
x, y, width, height); SetWindowPos (infoPtr->hwndSelf, 0, x, y, width, height, SWP_NOZORDER);
+ infoPtr->fStatus &= ~AUTO_RESIZE;
}
@@ -4484,7 +4485,6 @@
infoPtr->fStatus |= BAND_NEEDS_LAYOUT; REBAR_Layout (infoPtr, &rcClient, TRUE, TRUE);
- infoPtr->fStatus &= ~AUTO_RESIZE;
return 0; }