From 4b382e58467fdd3cf44d281b1d7721e056a8871e Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Wed, 5 May 2010 18:54:36 +0000 Subject: [PATCH] [FONTVIEW] - Katayama Hirofumi: Redraw the window when string is set. See issue #5357 for more details. svn path=/trunk/; revision=47104 --- reactos/base/applications/fontview/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/fontview/display.c b/reactos/base/applications/fontview/display.c index 7de217d7cbe..1362e4a822a 100644 --- a/reactos/base/applications/fontview/display.c +++ b/reactos/base/applications/fontview/display.c @@ -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; }