1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Windows: Allow constrained resize for windows that are not marked as resizable

This commit is contained in:
reuk 2024-07-30 16:30:32 +01:00
parent 3da5a3c9bd
commit a891f0054c
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -3346,9 +3346,7 @@ private:
bool isConstrainedNativeWindow() const
{
return constrainer != nullptr
&& (styleFlags & windowIsResizable) != 0
&& ! isKioskMode();
return constrainer != nullptr && ! isKioskMode();
}
LRESULT handleSizeConstraining (RECT& r, const WPARAM wParam)