Show More
Commit Description:
Move over more input handling....
Commit Description:
Move over more input handling.
(grafted from 1ad8dee9e756c89314d136926c9dac5e84649354)
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiComboFlags.gen.cs
16 lines | 401 B | text/x-csharp | CSharpLexer
16 lines | 401 B | text/x-csharp | CSharpLexer
r16 | namespace ImGuiNET | |||
{ | ||||
[System.Flags] | ||||
public enum ImGuiComboFlags | ||||
{ | ||||
None = 0, | ||||
PopupAlignLeft = 1 << 0, | ||||
HeightSmall = 1 << 1, | ||||
HeightRegular = 1 << 2, | ||||
HeightLarge = 1 << 3, | ||||
HeightLargest = 1 << 4, | ||||
NoArrowButton = 1 << 5, | ||||
NoPreview = 1 << 6, | ||||
HeightMask = HeightSmall | HeightRegular | HeightLarge | HeightLargest, | ||||
} | ||||
} | ||||