mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-21 01:24:21 +00:00
linux window z-order fix; small change to make audio plugin host demo compile; fix for assembly language in graphics rendering on gcc.
This commit is contained in:
parent
829f0c8dde
commit
7dd28c93e2
6 changed files with 22 additions and 6 deletions
|
|
@ -1090,6 +1090,12 @@ public:
|
|||
SubstructureRedirectMask | SubstructureNotifyMask,
|
||||
&ev);
|
||||
|
||||
XWindowAttributes attr;
|
||||
XGetWindowAttributes (display, windowH, &attr);
|
||||
|
||||
if (attr.override_redirect)
|
||||
XRaiseWindow (display, windowH);
|
||||
|
||||
XSync (display, False);
|
||||
|
||||
handleBroughtToFront();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue