comctl32: Call UpdateWindow() after changing statusbar text.

This commit is contained in:
Phil Krylov 2006-01-10 12:06:44 +01:00 committed by Alexandre Julliard
parent 325c19cfc5
commit b2d289fa23
1 changed files with 1 additions and 0 deletions

View File

@ -786,6 +786,7 @@ STATUSBAR_SetTextT (STATUS_INFO *infoPtr, INT nPart, WORD style,
part->text = ntext;
}
InvalidateRect(infoPtr->Self, &part->bound, FALSE);
UpdateWindow(infoPtr->Self);
return TRUE;
}