From: Derek Foreman Date: Thu, 10 Jun 2010 16:47:06 +0000 (-0400) Subject: properly render windows when they're on all desktops X-Git-Tag: cgl~54 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=d750304f4246f4c667912d15056d560fe3cd21de;p=dana%2Fopenbox.git properly render windows when they're on all desktops --- diff --git a/openbox/composite.c b/openbox/composite.c index 2689b31f..33704453 100644 --- a/openbox/composite.c +++ b/openbox/composite.c @@ -360,7 +360,8 @@ static gboolean composite(gpointer data) if (win->type == OB_WINDOW_CLASS_CLIENT) { client = WINDOW_AS_CLIENT(win); - if (client->desktop != screen_desktop) + if ((client->desktop != screen_desktop) + && (client->desktop != DESKTOP_ALL)) continue; }