1
0
Fork 0
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:
jules 2009-05-05 12:00:57 +00:00
parent 829f0c8dde
commit 7dd28c93e2
6 changed files with 22 additions and 6 deletions

View file

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