1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-07 15:33:52 +00:00

Remove unnecessary separators.

This commit is contained in:
Bartosz Taudul 2019-07-25 19:50:22 +02:00
parent d31d1f5946
commit 2291b91ee0

View File

@ -8374,7 +8374,6 @@ void View::DrawInfo()
{
TextFocused( "Queue delay:", TimeToString( m_worker.GetDelay() ) );
TextFocused( "Timer resolution:", TimeToString( m_worker.GetResolution() ) );
ImGui::Separator();
TextFocused( "Zones:", RealToString( m_worker.GetZoneCount(), true ) );
TextFocused( "Lock events:", RealToString( m_worker.GetLockCount(), true ) );
TextFocused( "Plot data points:", RealToString( m_worker.GetPlotCount(), true ) );
@ -8391,7 +8390,6 @@ void View::DrawInfo()
const auto fsz = m_worker.GetFullFrameCount( *m_frames );
if( fsz != 0 )
{
ImGui::Separator();
TextFocused( "Frame set:", m_frames->name == 0 ? "Frames" : m_worker.GetString( m_frames->name ) );
ImGui::SameLine();
ImGui::TextDisabled( "(%s)", m_frames->continuous ? "continuous" : "discontinuous" );