You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed last item flags leaking to disabled column, affecting IsItemHovered(). (ocornut#3651).
Validate and fix invalid DisplayOrder data from ini file.
Allow TableHeaderRows() to function will missing TableSetupColumn() calls.
Made TableHeader() use AllowItemOverlap mode to allow submit subsequent item in same cell, since it covers the whole cell area.
Copy file name to clipboardExpand all lines: imgui.cpp
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4749,6 +4749,7 @@ bool ImGui::IsItemEdited()
4749
4749
}
4750
4750
4751
4751
// Allow last item to be overlapped by a subsequent item. Both may be activated during the same frame before the later one takes priority.
4752
+
// FIXME: Although this is exposed, its interaction and ideal idiom with using ImGuiButtonFlags_AllowItemOverlap flag are extremely confusing, need rework.
0 commit comments