1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Windows: Disable edge-resizer cursors for kiosk-mode windows

This commit is contained in:
reuk 2025-06-18 20:11:50 +01:00
parent 3e70c37ce3
commit 8d935b25b2
No known key found for this signature in database

View file

@ -3877,7 +3877,8 @@ private:
// and if Microsoft's own VS Code doesn't have perfect mouse handling I don't
// think we can be expected to either!
if ((styleFlags & windowIsResizable) != 0)
if ((styleFlags & windowIsResizable) != 0
&& Desktop::getInstance().getKioskModeComponent() != &component)
{
const ScopedThreadDPIAwarenessSetter scope { hwnd };