From 69300ef6ec289e82e223966efe841f20e9629dd4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 8 Apr 2021 01:35:58 +0200 Subject: [PATCH] Welcome window shouldn't be collapsible. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index dd7afa2d..8971497d 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -586,7 +586,7 @@ static void DrawContents() auto& style = ImGui::GetStyle(); style.Colors[ImGuiCol_WindowBg] = ImVec4( 0.129f, 0.137f, 0.11f, 1.f ); - ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize ); + ImGui::Begin( "Get started", nullptr, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse ); char buf[128]; sprintf( buf, "Tracy Profiler %i.%i.%i", tracy::Version::Major, tracy::Version::Minor, tracy::Version::Patch ); ImGui::PushFont( bigFont );