From 29fcddca0b598099b0922505820bcb6a05a92a3b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Feb 2019 21:04:41 +0100 Subject: [PATCH] Display frame count in frame type selection dropdown. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 8ff2860d..f0c64efc 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -829,6 +829,8 @@ bool View::DrawImpl() { ImGui::SetItemDefaultFocus(); } + ImGui::SameLine(); + ImGui::TextDisabled( "(%s)", RealToString( fd->frames.size(), true ) ); } ImGui::EndCombo(); }