Index: dll/cpl/desk/preview.c =================================================================== --- dll/cpl/desk/preview.c (revision 48388) +++ dll/cpl/desk/preview.c (working copy) @@ -63,6 +63,7 @@ HFONT hCaptionFont; HFONT hMenuFont; HFONT hMessageFont; + HFONT hClientFont; HMENU hMenu; @@ -112,6 +113,8 @@ { THEME *theme; + pPreviewData->hClientFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT); + /* Load and modify the menu */ pPreviewData->hMenu = LoadMenu(hApplet, MAKEINTRESOURCE(IDR_PREVIEW_MENU)); EnableMenuItem(pPreviewData->hMenu, @@ -289,7 +292,7 @@ rc.left += 4; rc.top += 2; SetTextColor(hdc, theme->crColor[COLOR_WINDOWTEXT]); - hOldFont = SelectObject(hdc, pPreviewData->hCaptionFont); /* FIXME: client text is not caption text */ + hOldFont = SelectObject(hdc, pPreviewData->hClientFont); DrawText(hdc, pPreviewData->lpWinTxt, -1, &rc, DT_LEFT); SelectObject(hdc, hOldFont);