1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-02 21:53:52 +00:00

Use the indented spacing.

Plots for some reason were packed tighter.
This commit is contained in:
Bartosz Taudul 2022-09-03 21:11:36 +02:00
parent 6abce4e0c9
commit 5c90fe7a6e
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -30,6 +30,7 @@ void TimelineItem::Draw( bool firstFrame, double pxns, int& offset, const ImVec2
const auto w = ImGui::GetContentRegionAvail().x - 1; const auto w = ImGui::GetContentRegionAvail().x - 1;
const auto ty = ImGui::GetTextLineHeight(); const auto ty = ImGui::GetTextLineHeight();
const auto ostep = ty + 1;
const auto yPos = AdjustThreadPosition( wpos.y, offset ); const auto yPos = AdjustThreadPosition( wpos.y, offset );
const auto dpos = wpos + ImVec2( 0.5f, 0.5f ); const auto dpos = wpos + ImVec2( 0.5f, 0.5f );
const auto oldOffset = offset; const auto oldOffset = offset;
@ -88,7 +89,7 @@ void TimelineItem::Draw( bool firstFrame, double pxns, int& offset, const ImVec2
} }
auto hdrOffset = offset; auto hdrOffset = offset;
offset += ty; offset += ostep;
if( m_showFull ) if( m_showFull )
{ {
DrawContents( pxns, offset, wpos, hover, yMin, yMax ); DrawContents( pxns, offset, wpos, hover, yMin, yMax );
@ -98,7 +99,7 @@ void TimelineItem::Draw( bool firstFrame, double pxns, int& offset, const ImVec2
} }
} }
offset += 0.2 * ty; offset += 0.2f * ostep;
AdjustThreadHeight( firstFrame, oldOffset, offset ); AdjustThreadHeight( firstFrame, oldOffset, offset );
ImGui::PopClipRect(); ImGui::PopClipRect();