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:
parent
3e70c37ce3
commit
8d935b25b2
1 changed files with 2 additions and 1 deletions
|
|
@ -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 };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue