1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Tooltip cosmetics.

This commit is contained in:
Bartosz Taudul 2019-06-06 22:32:20 +02:00
parent c46576a68c
commit 08fb2b7337

View File

@ -1644,7 +1644,6 @@ bool View::DrawZoneFrames( const FrameData& frames )
ImGui::BeginTooltip();
ImGui::TextUnformatted( GetFrameText( frames, i, ftime, m_worker.GetFrameOffset() ) );
ImGui::Separator();
TextFocused( "Time from start of program:", TimeToString( m_worker.GetFrameBegin( frames, i ) - m_worker.GetTimeBegin() ) );
auto fi = m_worker.GetFrameImage( frames, i );
if( fi )
@ -1653,6 +1652,7 @@ bool View::DrawZoneFrames( const FrameData& frames )
{
UpdateTexture( m_frameTexture, fi->ptr, fi->w, fi->h );
}
ImGui::Separator();
ImGui::Image( m_frameTexture, ImVec2( fi->w, fi->h ), ImVec2( 0, 1 ), ImVec2( 1, 0 ) );
}
ImGui::EndTooltip();