mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-13 00:04:19 +00:00
Linux: Fixed an issue where windows beneath hidden windows would not receive any clicks
This commit is contained in:
parent
ed5dc0ca3d
commit
1a9df22eee
1 changed files with 3 additions and 0 deletions
|
|
@ -1789,6 +1789,9 @@ public:
|
|||
if (c == &component)
|
||||
break;
|
||||
|
||||
if (! c->isVisible())
|
||||
continue;
|
||||
|
||||
if (auto* peer = c->getPeer())
|
||||
if (peer->contains (localPos + bounds.getPosition() - peer->getBounds().getPosition(), true))
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue