This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Linux: Fixed an issue where windows beneath hidden windows would not receive any clicks
tags/2021-05-28
hogliux
7 years ago
parent
ed5dc0ca3d
commit
1a9df22eee
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp
+ 3
- 0
modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp
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;
Write
Preview
Loading…
Cancel
Save