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:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user