Keep FPS range and max counts in the same line.

This commit is contained in:
Bartosz Taudul
2026-06-24 16:50:03 +02:00
parent a7b0907d6c
commit 17720a0cd8

View File

@@ -254,6 +254,9 @@ void View::DrawFrameStatistics()
maxVal = std::max( maxVal, bins[i] );
}
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( "Max counts:", RealToString( maxVal ) );
TextFocused( "Mean:", TimeToString( m_frameSortData.average ) );