From ce55517f3aae5e5f6b6ea83b57e005bfaf29a6c7 Mon Sep 17 00:00:00 2001 From: PanteraPolnocy Date: Tue, 18 Nov 2025 18:10:39 +0100 Subject: [PATCH] FIRE-36066 No labels in Fast Timers Console in Hz mode Signed-off-by: PanteraPolnocy --- indra/newview/llfasttimerview.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 43b9f6f692..222e52079a 100644 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -1295,7 +1295,10 @@ void LLFastTimerView::drawLegend() timer_label = llformat("%s (%d)",idp->getName().c_str(),calls); break; case DISPLAY_HZ: - timer_label = llformat("%.1f", ms.value() ? (1.f / ms.value()) : 0.f); + // FIRE-36066 No labels in Fast Timers Console in Hz mode + // timer_label = llformat("%.1f", ms.value() ? (1.f / ms.value()) : 0.f); + timer_label = llformat("%s [%.1f Hz]", idp->getName().c_str(), ms.value() ? (1.f / ms.value()) : 0.f); + // break; } dx = (TEXT_HEIGHT+4) + get_depth(idp)*8;