Module: wine Branch: refs/heads/master Commit: b2d289fa2382d8480c4689b098a0c5b616aac1ca URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=b2d289fa2382d8480c4689b0...
Author: Phil Krylov phil@newstar.rinet.ru Date: Tue Jan 10 12:06:44 2006 +0100
comctl32: Call UpdateWindow() after changing statusbar text.
---
dlls/comctl32/status.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/comctl32/status.c b/dlls/comctl32/status.c index 7c86815..46d55d4 100644 --- a/dlls/comctl32/status.c +++ b/dlls/comctl32/status.c @@ -786,6 +786,7 @@ STATUSBAR_SetTextT (STATUS_INFO *infoPtr part->text = ntext; } InvalidateRect(infoPtr->Self, &part->bound, FALSE); + UpdateWindow(infoPtr->Self);
return TRUE; }