Fix fading of minimized windows when deactivating the present windows effect.

svn path=/trunk/KDE/kdebase/workspace/; revision=871588
remotes/origin/Plasma/5.0
Lucas Murray 18 years ago
parent ae957480a0
commit d2f83ab8f7
  1. 4
      effects/presentwindows.cpp

@ -1143,9 +1143,9 @@ void PresentWindowsEffect::setActive( bool active )
{
// TODO: w->isOnCurrentDesktop(); doesn't seem to be updated immediately
if( m_highlightedWindow )
m_windowData[w].visible = ( w->desktop() == m_highlightedWindow->desktop() || w->isOnAllDesktops() );
m_windowData[w].visible = ( w->desktop() == m_highlightedWindow->desktop() || w->isOnAllDesktops() ) && !w->isMinimized();
else // Only called when cancelling the effect, so isOnCurrentDesktop() is fine
m_windowData[w].visible = w->isOnCurrentDesktop();
m_windowData[w].visible = w->isOnCurrentDesktop() && !w->isMinimized();
}
// Move all windows back to their original position

Loading…
Cancel
Save