[FONTVIEW]

- Katayama Hirofumi: Redraw the window when string is set.
See issue #5357 for more details.

svn path=/trunk/; revision=47104
This commit is contained in:
Aleksey Bragin 2010-05-05 18:54:36 +00:00
parent e3ce00b76b
commit 4b382e5846

View file

@ -204,7 +204,7 @@ Display_SetString(HWND hwnd, LPARAM lParam)
pData = (DISPLAYDATA*)GetWindowLongPtr(hwnd, GWLP_USERDATA);
_snwprintf(pData->szString, MAX_STRING, (WCHAR*)lParam);
// FIXME: redraw the window
InvalidateRect(hwnd, NULL, TRUE);
return 0;
}