shell32: Forward font messages to the listview window.

This commit is contained in:
Alexandre Julliard 2013-05-29 17:59:43 +02:00
parent 6a40d65ba8
commit ba486ca1b4
1 changed files with 2 additions and 0 deletions

View File

@ -1717,6 +1717,8 @@ static LRESULT CALLBACK ShellView_WndProc(HWND hWnd, UINT uMessage, WPARAM wPara
break;
case WM_GETDLGCODE: return SendMessageW(pThis->hWndList, uMessage, 0, 0);
case WM_SETFONT: return SendMessageW(pThis->hWndList, WM_SETFONT, wParam, lParam);
case WM_GETFONT: return SendMessageW(pThis->hWndList, WM_GETFONT, wParam, lParam);
case WM_DESTROY:
RevokeDragDrop(pThis->hWnd);