1
0
Fork 0
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:
hogliux 2017-07-31 12:12:53 +01:00
parent ed5dc0ca3d
commit 1a9df22eee

View file

@ -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;