Internals: Changed SplitterBehavior() signature to be consistent with other similar signatures. (#319).

This commit is contained in:
omar
2018-07-26 23:50:05 +02:00
parent 63df9d6311
commit 28c1a9857e
2 changed files with 2 additions and 2 deletions

View File

@ -12981,7 +12981,7 @@ void ImGui::VerticalSeparator()
}
// Using 'hover_visibility_delay' allows us to hide the highlight and mouse cursor for a short time, which can be convenient to reduce visual noise.
bool ImGui::SplitterBehavior(ImGuiID id, const ImRect& bb, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay)
bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;