FIRE-36066 No labels in Fast Timers Console in Hz mode
Signed-off-by: PanteraPolnocy <panterapolnocy@gmail.com>master
parent
307bc44ce8
commit
ce55517f3a
|
|
@ -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);
|
||||
// <FS:PP> 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);
|
||||
// </FS:PP>
|
||||
break;
|
||||
}
|
||||
dx = (TEXT_HEIGHT+4) + get_depth(idp)*8;
|
||||
|
|
|
|||
Loading…
Reference in New Issue