Skip to content
Snippets Groups Projects
Commit f281d0e7 authored by Markus Gömmel's avatar Markus Gömmel Committed by Alexandre Julliard
Browse files

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

parent 6302b965
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment