0
0
mirror of https://github.com/wolfpld/tracy.git synced 2026-01-18 17:11:26 +01:00

Better table sizing flags?

This commit is contained in:
Bartosz Taudul
2026-01-17 01:36:09 +01:00
parent faade0f871
commit 805d4bf6fd

View File

@@ -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: