diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 62cb104d..50075a55 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -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" );