2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00:00

Don't lock user manual window size.

This commit is contained in:
Bartosz Taudul
2026-01-14 01:23:39 +01:00
parent ce74512b92
commit 3547009d1c

View File

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