mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-25 04:28:22 +00:00
Fix TimelineController height calculation.
This commit is contained in:
@@ -7,7 +7,6 @@ namespace tracy
|
||||
|
||||
TimelineController::TimelineController( View& view, Worker& worker )
|
||||
: m_height( 0 )
|
||||
, m_scroll( 0 )
|
||||
, m_firstFrame( true )
|
||||
, m_view( view )
|
||||
, m_worker( worker )
|
||||
@@ -31,16 +30,7 @@ void TimelineController::End( double pxns, int offset, const ImVec2& wpos, bool
|
||||
item->Draw( m_firstFrame, pxns, offset, wpos, hover, yMin, yMax );
|
||||
}
|
||||
|
||||
const auto scrollPos = ImGui::GetScrollY();
|
||||
if( scrollPos == 0 && m_scroll != 0 )
|
||||
{
|
||||
m_height = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if( offset > m_height ) m_height = offset;
|
||||
}
|
||||
m_scroll = scrollPos;
|
||||
m_height = offset;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user