mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Windows: Replaced WM_DPICHANGED with its numerical value for < 8.1 compatibility
This commit is contained in:
parent
fc203d62d9
commit
e02611bcb0
1 changed files with 3 additions and 3 deletions
|
|
@ -3508,9 +3508,9 @@ private:
|
|||
break;
|
||||
|
||||
//==============================================================================
|
||||
case WM_SIZING: return handleSizeConstraining (*(RECT*) lParam, wParam);
|
||||
case WM_WINDOWPOSCHANGING: return handlePositionChanging (*(WINDOWPOS*) lParam);
|
||||
case WM_DPICHANGED: return handleDPIChanging ((int) HIWORD (wParam), *(RECT*) lParam);
|
||||
case WM_SIZING: return handleSizeConstraining (*(RECT*) lParam, wParam);
|
||||
case WM_WINDOWPOSCHANGING: return handlePositionChanging (*(WINDOWPOS*) lParam);
|
||||
case 0x2e0: /* WM_DPICHANGED */ return handleDPIChanging ((int) HIWORD (wParam), *(RECT*) lParam);
|
||||
|
||||
case WM_WINDOWPOSCHANGED:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue