1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add icon to zone time range display.

This commit is contained in:
Bartosz Taudul 2019-12-28 17:24:11 +01:00
parent 870c9c734f
commit e083b2773a

View File

@ -8057,6 +8057,10 @@ void View::DrawFindZone()
}
if( m_findZone.limitRange )
{
#ifdef TRACY_EXTENDED_FONT
ImGui::TextUnformatted( ICON_FA_LOCK );
ImGui::SameLine();
#endif
TextFocused( "Zone time range:", TimeToString( m_findZone.rangeMin ) );
ImGui::SameLine();
TextFocused( "-", TimeToString( m_findZone.rangeMax ) );