mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fix for some Apple AU guis.
This commit is contained in:
parent
c50a70669a
commit
ede73fcfd7
4 changed files with 15 additions and 15 deletions
|
|
@ -107,11 +107,10 @@ void DocumentWindow::setTitleBarHeight (const int newHeight)
|
|||
repaintTitleBar();
|
||||
}
|
||||
|
||||
void DocumentWindow::setTitleBarButtonsRequired (const int requiredButtons_,
|
||||
const bool positionTitleBarButtonsOnLeft_)
|
||||
void DocumentWindow::setTitleBarButtonsRequired (const int buttons, const bool onLeft)
|
||||
{
|
||||
requiredButtons = requiredButtons_;
|
||||
positionTitleBarButtonsOnLeft = positionTitleBarButtonsOnLeft_;
|
||||
requiredButtons = buttons;
|
||||
positionTitleBarButtonsOnLeft = onLeft;
|
||||
lookAndFeelChanged();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue