mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-19 01:04:20 +00:00
Changed Windows windowing so that the resizeStart() and resizeEnd() methods of the constrainer associated with the application window are called when it is maximised.
This commit is contained in:
parent
ed0c032a01
commit
56423ae9fd
1 changed files with 6 additions and 0 deletions
|
|
@ -782,6 +782,9 @@ public:
|
|||
|
||||
if (isFullScreen() != shouldBeFullScreen)
|
||||
{
|
||||
if (constrainer != nullptr)
|
||||
constrainer->resizeStart();
|
||||
|
||||
fullScreen = shouldBeFullScreen;
|
||||
const WeakReference<Component> deletionChecker (&component);
|
||||
|
||||
|
|
@ -805,6 +808,9 @@ public:
|
|||
|
||||
if (deletionChecker != nullptr)
|
||||
handleMovedOrResized();
|
||||
|
||||
if (constrainer != nullptr)
|
||||
constrainer->resizeEnd();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue