Docking: Minor renaming. DockContextAddNode() uses 0 as marker for automatic ID selection + TODO update and moved docking entries to docs/TODO.txt

This commit is contained in:
omar
2018-09-25 22:05:53 +02:00
parent d3e8e5731a
commit dc92431328
3 changed files with 37 additions and 41 deletions

View File

@ -1568,10 +1568,10 @@ struct ImGuiSizeCallbackData
// For SetNextWindowDockFamily() and DockSpace() function
struct ImGuiDockFamily
{
ImGuiID FamilyId; // 0 = unaffiliated
ImGuiID ID; // 0 = unaffiliated
bool CompatibleWithFamilyZero; // true = can be docked/merged with an unaffiliated window
ImGuiDockFamily() { FamilyId = 0; CompatibleWithFamilyZero = true; }
ImGuiDockFamily() { ID = 0; CompatibleWithFamilyZero = true; }
};
// Data payload for Drag and Drop operations