ImGuiTableColumnFlags_NoDirectResize_=1<<20 // [Internal] Disable user resizing this column directly (it may however we resized indirectly from its left edge)
ImGuiTableColumnFlags_NoDirectResize_=1<<30 // [Internal] Disable user resizing this column directly (it may however we resized indirectly from its left edge)
};
// Flags for ImGui::TableNextRow()
@ -1912,9 +1912,8 @@ struct ImGuiTableSortSpecs
constImGuiTableSortSpecsColumn*Specs;// Pointer to sort spec array.
intSpecsCount;// Sort spec count. Most often 1 unless e.g. ImGuiTableFlags_MultiSortable is enabled.
boolSpecsDirty;// Set to true when specs have changed since last time! Use this to sort again, then clear the flag.
ImU64ColumnsMask;// Set to the mask of column indexes included in the Specs array. e.g. (1 << N) when column N is sorted.