Remove VisData.

Its functionality is now incorporated into TimelineItem. For purposes of
maintaining visibility of frame sets and locks a much simpler ptr -> bool map
is now used.
This commit is contained in:
Bartosz Taudul
2022-09-04 14:46:51 +02:00
parent ad2fc03125
commit 44efb15df1
8 changed files with 28 additions and 85 deletions

View File

@@ -189,9 +189,9 @@ void View::DrawNotificationArea()
}
{
bool hidden = false;
for( auto& v : m_tc.GetVisData() )
for( auto& v : m_visMap )
{
if( !v.second.visible )
if( !v.second )
{
hidden = true;
break;