Store View and Worker in TimelineController.

This commit is contained in:
Bartosz Taudul
2022-09-03 16:38:39 +02:00
parent b42182f0a8
commit 449dff0eca
3 changed files with 9 additions and 2 deletions

View File

@@ -52,6 +52,7 @@ View::View( void(*cbMainThread)(std::function<void()>, bool), const char* addr,
, m_viewMode( ViewMode::LastFrames )
, m_viewModeHeuristicTry( true )
, m_forceConnectionPopup( true, true )
, m_tc( *this, m_worker )
, m_frames( nullptr )
, m_messagesScrollBottom( true )
, m_reactToCrash( true )
@@ -76,6 +77,7 @@ View::View( void(*cbMainThread)(std::function<void()>, bool), FileRead& f, ImFon
, m_filename( f.GetFilename() )
, m_staticView( true )
, m_viewMode( ViewMode::Paused )
, m_tc( *this, m_worker )
, m_frames( m_worker.GetFramesBase() )
, m_messagesScrollBottom( false )
, m_smallFont( smallFont )