Show More
Commit Description:
Fix tick marks....
Commit Description:
Fix tick marks.
Use the range (rather than the domain) so the ticks are spaced appropriately.
Also sets an arbitrary range if the full range is 0 (if the series is always at
the same value) so that the line actually appears.
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiDragDropFlags.gen.cs
18 lines | 458 B | text/x-csharp | CSharpLexer
18 lines | 458 B | text/x-csharp | CSharpLexer
r16 | namespace ImGuiNET | |||
{ | ||||
[System.Flags] | ||||
public enum ImGuiDragDropFlags | ||||
{ | ||||
None = 0, | ||||
r503 | SourceNoPreviewTooltip = 1, | |||
SourceNoDisableHover = 2, | ||||
SourceNoHoldToOpenOthers = 4, | ||||
SourceAllowNullID = 8, | ||||
SourceExtern = 16, | ||||
SourceAutoExpirePayload = 32, | ||||
AcceptBeforeDelivery = 1024, | ||||
AcceptNoDrawDefaultRect = 2048, | ||||
AcceptNoPreviewTooltip = 4096, | ||||
AcceptPeekOnly = 3072, | ||||
r16 | } | |||
} | ||||