From e4acd2db77b7440646dcf3b4624efd13bdeff45d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 29 Jun 2026 14:37:22 +0200 Subject: [PATCH] Add icon for the "limit to view" button in time ranges window. --- profiler/src/profiler/TracyView_Ranges.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyView_Ranges.cpp b/profiler/src/profiler/TracyView_Ranges.cpp index 2bed2df4..5111e45b 100644 --- a/profiler/src/profiler/TracyView_Ranges.cpp +++ b/profiler/src/profiler/TracyView_Ranges.cpp @@ -80,7 +80,7 @@ void View::DrawRangeEntry( Range& range, const char* label, uint32_t color, int if( ImGui::SmallButton( ICON_FA_MICROSCOPE " Focus" ) ) ZoomToRange( range.min, range.max ); ImGui::SameLine(); - if( ImGui::SmallButton( "Limit to view" ) ) + if( ImGui::SmallButton( ICON_FA_ARROWS_LEFT_RIGHT_TO_LINE " Limit to view" ) ) { range.min = m_vd.zvStart; range.max = m_vd.zvEnd;