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
Copy file name to clipboardExpand all lines: imgui.h
+4-3
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
// Library Version
30
30
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
31
31
#defineIMGUI_VERSION"1.91.7 WIP"
32
-
#defineIMGUI_VERSION_NUM19165
32
+
#defineIMGUI_VERSION_NUM19166
33
33
#defineIMGUI_HAS_TABLE
34
34
35
35
/*
@@ -1206,9 +1206,10 @@ enum ImGuiTreeNodeFlags_
1206
1206
ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, // Extend hit box to the right-most edge, even if not framed. This is not the default in order to allow adding other items on the same line without using AllowOverlap mode.
1207
1207
ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, // Extend hit box to the left-most and right-most edges (cover the indent area).
1208
1208
ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, // Narrow hit box + narrow hovering highlight, will only cover the label text.
1209
-
ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, // Frame will span all columns of its container table (text will still fit in current column)
1210
-
ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, //(WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)
1209
+
ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, // Frame will span all columns of its container table (label will still fit in current column)
1210
+
ImGuiTreeNodeFlags_LabelSpanAllColumns = 1 << 15, //Label will span all columns of its container table
1211
1211
//ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 16, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible
1212
+
ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 17, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop)
0 commit comments