mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
ResizableWindow: Always set resizable flag, regardless of whether the window has a title bar
This commit is contained in:
parent
4201b76d15
commit
8a09ac37cb
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ int ResizableWindow::getDesktopWindowStyleFlags() const
|
|||
{
|
||||
int styleFlags = TopLevelWindow::getDesktopWindowStyleFlags();
|
||||
|
||||
if (isResizable() && (styleFlags & ComponentPeer::windowHasTitleBar) != 0)
|
||||
if (isResizable())
|
||||
styleFlags |= ComponentPeer::windowIsResizable;
|
||||
|
||||
return styleFlags;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue