From 039fdd6124a9120f2f1e03743e43211dc8c6a365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Sat, 19 Jan 2008 21:26:47 +0000 Subject: [PATCH] Fix fullscreen on youtube with latest flash. Requiring the fullscreen window to be focusable is probably unnecessary and this was breaking because of the skiptasbar flag. svn path=/trunk/KDE/kdebase/workspace/; revision=763600 --- layers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers.cpp b/layers.cpp index 45afaf7142..8c8ff2e3e4 100644 --- a/layers.cpp +++ b/layers.cpp @@ -840,7 +840,7 @@ Layer Client::belongsToLayer() const // only raise fullscreen above docks if it's the topmost window in unconstrained stacking order, // i.e. the window set to be topmost by the user (also includes transients of the fullscreen window) const Client* ac = workspace()->mostRecentlyActivatedClient(); // instead of activeClient() - avoids flicker - const Client* top = workspace()->topClientOnDesktop( desktop(), true ); + const Client* top = workspace()->topClientOnDesktop( desktop(), true, false ); if( isFullScreen() && ac != NULL && top != NULL && ( ac == this || this->group() == ac->group()) && ( top == this || this->group() == top->group()))