Invalidate the window when the range is changed.

oldstable
Huw Davies 2003-05-11 02:38:05 +00:00 committed by Alexandre Julliard
parent 493d89d888
commit 5594fcea74
1 changed files with 1 additions and 0 deletions

View File

@ -257,6 +257,7 @@ static DWORD PROGRESS_SetRange (PROGRESS_INFO *infoPtr, int low, int high)
infoPtr->MinVal = low;
infoPtr->MaxVal = high;
PROGRESS_CoercePos(infoPtr);
InvalidateRect(infoPtr->Self, NULL, TRUE);
return res;
}