Mark layers as dirty on VIEW_ITEM removal.

This commit is contained in:
Maciej Suminski 2013-08-22 15:04:14 +02:00
parent 89a138c09e
commit 6b3742b76b
1 changed files with 1 additions and 0 deletions

View File

@ -108,6 +108,7 @@ void VIEW::Remove( VIEW_ITEM* aItem )
{
VIEW_LAYER* l = & ( ( *i ).second );
l->items->Remove( aItem );
l->isDirty = true;
}
}