From 3547009d1c19297b190814e2e1f79c88d28ac23a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 14 Jan 2026 01:23:39 +0100 Subject: [PATCH] Don't lock user manual window size. --- profiler/src/profiler/TracyView_Manual.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyView_Manual.cpp b/profiler/src/profiler/TracyView_Manual.cpp index 28a8442d..19222fab 100644 --- a/profiler/src/profiler/TracyView_Manual.cpp +++ b/profiler/src/profiler/TracyView_Manual.cpp @@ -12,7 +12,7 @@ namespace tracy void View::DrawManual() { const auto scale = GetScale(); - ImGui::SetNextWindowSize( ImVec2( 1200 * scale, 800 * scale ), ImGuiCond_Always ); + ImGui::SetNextWindowSize( ImVec2( 1200 * scale, 800 * scale ), ImGuiCond_FirstUseEver ); ImGui::Begin( "User manual", &m_showManual ); if( ImGui::GetCurrentWindowRead()->SkipItems ) { ImGui::End(); return; }