Welcome window shouldn't be collapsible.

This commit is contained in:
Bartosz Taudul 2021-04-08 01:35:58 +02:00
parent 2477f33a6d
commit 69300ef6ec
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -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 );