Fixed ghost effect in GAL view.

This commit is contained in:
Maciej Suminski 2015-06-04 14:54:07 +02:00
parent 0331d9958a
commit d89d1d49a3
1 changed files with 8 additions and 3 deletions

View File

@ -119,9 +119,10 @@ void VIEW::Remove( VIEW_ITEM* aItem )
m_needsUpdate.end(), aItem );
if( item != m_needsUpdate.end() )
{
m_needsUpdate.erase( item );
aItem->clearUpdateFlags();
aItem->clearUpdateFlags();
}
}
int layers[VIEW::VIEW_MAX_LAYERS], layers_count;
@ -732,6 +733,11 @@ void VIEW::Clear()
r.SetMaximum();
BOOST_FOREACH( VIEW_ITEM* item, m_needsUpdate )
item->clearUpdateFlags();
m_needsUpdate.clear();
for( LAYER_MAP_ITER i = m_layers.begin(); i != m_layers.end(); ++i )
{
VIEW_LAYER* l = &( ( *i ).second );
@ -744,7 +750,6 @@ void VIEW::Clear()
}
m_gal->ClearCache();
m_needsUpdate.clear();
}