kwin: Return all windows in EffectsHandlerImpl::stackingOrder()

icc-effect-5.14.5
Fredrik Höglund 2011-05-01 22:56:37 +02:00
parent 7ef8f444f6
commit 8ab56a2146
1 changed files with 3 additions and 3 deletions

View File

@ -730,10 +730,10 @@ EffectWindow* EffectsHandlerImpl::findWindow(WId id) const
EffectWindowList EffectsHandlerImpl::stackingOrder() const
{
ClientList list = Workspace::self()->stackingOrder();
ToplevelList list = Workspace::self()->xStackingOrder();
EffectWindowList ret;
foreach (Client * c, list)
ret.append(effectWindow(c));
foreach (Toplevel *w, list)
ret.append(effectWindow(w));
return ret;
}