search for: fullscreenwindows

Displaying 3 results from an estimated 3 matches for "fullscreenwindows".

2007 Apr 10
6
Fullscreen windows(videos) and Compiz
I worte in my last mail that when I ue compiz git fullscreen videos are no longer ontop of the gnome-panel... that means that the gnome-panel is still visible while playing the video in fullscreen. The commit which I said may caused it has nothing to do with it compiz does not build if I revert it). again with older compiz and metacity it works fine. (now I am running 20070316). Anyone else wiith
2007 Nov 21
0
window stacking bug #3
While I was posting the previous two window stacking bug reports, I noticed another, similar problem: (All this is about the latest Compiz from GIT, with "redirect full-screen" _disabled_.) Open two windows that you can easily tell apart. (It works with two terminals, as long as they have different text on them.) Make them both full-screen; you'll need the Extra WM Actions plugin.
2007 Nov 26
1
[PATCH] Don't draw shaded windows about to be destroyed
--- src/paint.c | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/paint.c b/src/paint.c index 00cbf73..4ddd332 100644 --- a/src/paint.c +++ b/src/paint.c @@ -193,7 +193,12 @@ paintOutputRegion (CompScreen *screen, if (w->destroyed) continue; - if (!w->shaded) + if (w->shaded) + { + if (w->id < 2) + continue; + } + else