secure m_highlightedWindows access when triggering
explicit repaint in highlight effect
This commit is contained in:
parent
1fc3fb4db2
commit
8dccc889af
1 changed files with 2 additions and 1 deletions
|
@ -245,7 +245,8 @@ void HighlightWindowEffect::prepareHighlighting()
|
|||
foreach( EffectWindow *w, effects->stackingOrder() )
|
||||
if( !m_windowOpacity.contains( w )) // Just in case we are still finishing from last time
|
||||
m_windowOpacity[w] = isInitiallyHidden( w ) ? 0.0 : 1.0;
|
||||
m_highlightedWindows.at(0)->addRepaintFull();
|
||||
if (!m_highlightedWindows.isEmpty())
|
||||
m_highlightedWindows.at(0)->addRepaintFull();
|
||||
}
|
||||
|
||||
void HighlightWindowEffect::finishHighlighting()
|
||||
|
|
Loading…
Reference in a new issue