From d590fa7ce2236bc3e6712986b860cc0d0e0bbe17 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 5 Aug 2018 02:30:41 +0200 Subject: [PATCH] Display that frames are discontinuous in options. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index a4def322..15617877 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3868,7 +3868,7 @@ void View::DrawOptions() ImGui::Checkbox( fd->name == 0 ? "Frames" : m_worker.GetString( fd->name ), &Visible( fd ) ); ImGui::PopID(); ImGui::SameLine(); - ImGui::TextDisabled( "%s frames", RealToString( fd->frames.size(), true ) ); + ImGui::TextDisabled( "%s %sframes", RealToString( fd->frames.size(), true ), fd->continuous ? "" : "discontinuous " ); } ImGui::TreePop(); }