From 805d4bf6fdd91fb3493afff0bd110acbd5a34ccc Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 17 Jan 2026 01:36:09 +0100 Subject: [PATCH] Better table sizing flags? --- profiler/src/profiler/TracyMarkdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracyMarkdown.cpp b/profiler/src/profiler/TracyMarkdown.cpp index 383adc27..5b40070b 100644 --- a/profiler/src/profiler/TracyMarkdown.cpp +++ b/profiler/src/profiler/TracyMarkdown.cpp @@ -108,7 +108,7 @@ public: char tmp[64]; sprintf( tmp, "##table%d", idx++ ); Separate(); - ImGui::BeginTable( tmp, ((MD_BLOCK_TABLE_DETAIL*)detail)->col_count, ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders | ImGuiTableFlags_SizingStretchProp ); + ImGui::BeginTable( tmp, ((MD_BLOCK_TABLE_DETAIL*)detail)->col_count, ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders | ImGuiTableFlags_SizingStretchSame | ImGuiTableFlags_Resizable ); break; } case MD_BLOCK_THEAD: