From 06421cf5ca3329bf18e79bf2676e9d07c333d0e5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 17 Mar 2019 16:39:27 +0100 Subject: [PATCH] Always auto-resize memory allocation info window. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 7124bdc9..4f5b0aa0 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -7908,7 +7908,7 @@ void View::DrawCallstackWindow() void View::DrawMemoryAllocWindow() { bool show = true; - ImGui::Begin( "Memory allocation", &show ); + ImGui::Begin( "Memory allocation", &show, ImGuiWindowFlags_AlwaysAutoResize ); const auto& mem = m_worker.GetMemData(); const auto& ev = mem.data[m_memoryAllocInfoWindow];