mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-06 04:58:47 +02:00
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:
4
imgui.h
4
imgui.h
@ -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
|
||||
|
Reference in New Issue
Block a user