Commit f281d0e7 authored by Markus Gömmel's avatar Markus Gömmel Committed by Alexandre Julliard

comctl32/datetime: Added a missing InvalidateRect to update display after WM_ENABLE.

parent 6302b965
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment