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
+1-1
Original file line number
Diff line number
Diff line change
@@ -954,7 +954,7 @@ enum ImGuiWindowFlags_
954
954
ImGuiWindowFlags_NoMove = 1 << 2, // Disable user moving the window
955
955
ImGuiWindowFlags_NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programmatically)
956
956
ImGuiWindowFlags_NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set.
957
-
ImGuiWindowFlags_NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it
957
+
ImGuiWindowFlags_NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it. Also referred to as Window Menu Button (e.g. within a docking node).
958
958
ImGuiWindowFlags_AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame
959
959
ImGuiWindowFlags_NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f).
960
960
ImGuiWindowFlags_NoSavedSettings = 1 << 8, // Never load/save settings in .ini file
0 commit comments