From 7b4a1280801bfc7bbd5fee4ec9fcde82ed8e6fd7 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 29 Jun 2026 14:43:58 +0200 Subject: [PATCH] Use full size button for flame graph reset view. --- profiler/src/profiler/TracyView_FlameGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyView_FlameGraph.cpp b/profiler/src/profiler/TracyView_FlameGraph.cpp index 093af75b..6c9d653a 100644 --- a/profiler/src/profiler/TracyView_FlameGraph.cpp +++ b/profiler/src/profiler/TracyView_FlameGraph.cpp @@ -1019,7 +1019,7 @@ void View::DrawFlameGraph() ImGui::SeparatorEx( ImGuiSeparatorFlags_Vertical ); ImGui::SameLine(); - if( ImGui::SmallButton( "Reset view" ) ) + if( ImGui::Button( "Reset view" ) ) { m_flameGraphViewStart = 0; m_flameGraphViewEnd = 0;