comctl32/datetime: Added a missing InvalidateRect to update display after WM_ENABLE.
This commit is contained in:
parent
6302b965fa
commit
f281d0e77d
|
@ -811,6 +811,9 @@ DATETIME_Enable (DATETIME_INFO *infoPtr, BOOL bEnable)
|
|||
infoPtr->dwStyle &= ~WS_DISABLED;
|
||||
else
|
||||
infoPtr->dwStyle |= WS_DISABLED;
|
||||
|
||||
InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue