Show More
Commit Description:
Only scroll after a slight delay....
Commit Description:
Only scroll after a slight delay. Wait about 1/3 of a second before beginning to scroll. Otherwise it becomes too easy to trigger by mistake when mousing over to the toolbar.
File last commit:
Show/Diff file:
Action:
ImGui.NET/Generated/ImGuiViewportFlags.gen.cs
21 lines | 476 B | text/x-csharp | CSharpLexer
namespace ImGuiNET
{
[System.Flags]
public enum ImGuiViewportFlags
{
None = 0,
IsPlatformWindow = 1,
IsPlatformMonitor = 2,
OwnedByApp = 4,
NoDecoration = 8,
NoTaskBarIcon = 16,
NoFocusOnAppearing = 32,
NoFocusOnClick = 64,
NoInputs = 128,
NoRendererClear = 256,
TopMost = 512,
Minimized = 1024,
NoAutoMerge = 2048,
CanHostOtherWindows = 4096,
}
}