Displaying 2 results from an estimated 2 matches for "stackingmod".
Did you mean:
stackingmode
2007 Nov 21
0
window stacking bug #2
...lick "Save Link as" option,
try to open the Download manager, or enter any of the settings
dialogs. Notice that the windows appear below Firefox.
* Possible solution:
If I followed the process correctly, Compiz calls
updateWindowAttributes() on newly-created windows (window.c), with the
stackingMode argument set to CompStackingUpdateModeInitialMap. This
function is supposed to set the window's (initial) stacking, among
other things. For instance, at one point it runs:
if (stackingMode != CompStackingUpdateModeNone)
{
Bool aboveFs;
aboveFs = (stackingMode == CompStacking...
2007 Nov 21
0
window stacking bug #3
...below B! As in the previous bugs I posted, it keeps the focus,
though. You can see this by making the B window transparent before the
test, so you can see the typing in the A window through it.
In this case, after full-screen is turned off, the window is passed to
updateWindowAttributes() with the
stackingMode=CompStackingUpdateModeNormal. (The problematic call is in
the file "extrawm.c"). The function is fullscreenWindow(CompWindow*,
int). At the end (line 71 in my version) there's a call to
updateWindowAttributes (w, CompStackingUpdateModeNormal)
However, changing from full-scre...