mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
Fixed a layout bug in the Projucer GUI tool
This commit is contained in:
parent
85f74ca7d3
commit
4ac47ac8af
1 changed files with 2 additions and 2 deletions
|
|
@ -411,8 +411,8 @@ public:
|
|||
*/
|
||||
bool isPositionAbsolute() const noexcept
|
||||
{
|
||||
return xMode == absoluteFromParentTopLeft
|
||||
&& yMode == absoluteFromParentTopLeft
|
||||
return (xMode & ~anchorAtLeftOrTop) == absoluteFromParentTopLeft
|
||||
&& (yMode & ~anchorAtLeftOrTop) == absoluteFromParentTopLeft
|
||||
&& wMode == absoluteSize
|
||||
&& hMode == absoluteSize;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue