Docking: Removed SplitRatio from ImGuiDockNode and ImGuiDockNodeSettings, which we don't need anymore.

This commit is contained in:
omar
2018-09-14 17:51:30 +02:00
parent ba7b68798d
commit 175bab4f5f
2 changed files with 4 additions and 21 deletions

View File

@ -751,7 +751,6 @@ struct ImGuiDockNode
ImVec2 Pos, Size; // Current position, size.
ImVec2 LastExplicitSize; // [Split node only] Last explicit size (overridden when using a splitter affecting the node)
int SplitAxis; // [Split node only] Split axis (X or Y)
float SplitRatio; // [Split node only] Split ratio FIXME-DOCK: This can be obsoleted in favor of LastExplicitSize.
ImGuiWindow* HostWindow;
ImGuiWindow* VisibleWindow;