shell32: Forward font messages to the listview window.
This commit is contained in:
parent
6a40d65ba8
commit
ba486ca1b4
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue