2018-08-08 |
Nav: Made CTRL+TAB skip menus + skip the current navigation window if is has the ImGuiWindow_NoNavFocus set. (#787)
...
omar
committed
on 8 Aug 2018
|
---|---|
2018-08-06 |
Use literals in place of LLONG_MIN, LLONG_MAX ULLONG_MAX if they are not available. Amend
498c0dc . We prefer using the defines if available in limits.h because they somehow tend to work without warnings when enabling strict C++03 compilation. The 3 literals are fallbacks.. (#1926).
omar
committed
on 6 Aug 2018
|
2018-08-05 |
Internals: Minor renaming for consistency.
omar
committed
on 5 Aug 2018
|
2018-08-03 |
Metrics: Changed io.MetricsActiveWindows to reflect the number of active windows (!= from visible windows), which is useful for lazy/idle render mechanisms as new windows are typically not visible for one frame.
...
omar
committed
on 3 Aug 2018
|
Using limits.h LLONG_MIN etc. to increase old-compiler compatibility (as ll and ull prefixes were not standard). Not tested much on old compilers, relying on Clang/GCC warnings.
omar
committed
on 3 Aug 2018
|
|
2018-08-01 |
|
Renamed io.OptResizeWindowsFromEdges to ConfigResizeWindowsFromEdges, io.OptCursorBlink to io.ConfigCursorBlink, io.OptMacOSXBehaviors to ConfigMacOSXBehaviors for consistency. (#1427, #1495, #822, #473, #650)
...
omar
committed
on 1 Aug 2018
|
|
2018-07-31 |
Fixed PushID() from keeping alive the new ID Stack top value (if a previously active widget shared the ID it would be erroneously kept alive) (drag and drop demo could soft-lock the UI until pressing Escape!)
omar
committed
on 31 Jul 2018
|
Drag and Drop: Elapse payload as soon as delivery is made. (#153)
omar
committed
on 31 Jul 2018
|
|
Viewport: Fixed an assert on loss of valid mouse position while dragging a tooltip (would happen often when using debugger breakpoint). Not totally sure about best solution, may not be important.
omar
committed
on 31 Jul 2018
|
|
Drag and Drop: Added ImGuiDragDropFlags_SourceAutoExpirePayload flag to force payload to expire if the source stops being submitted. (#1725, #143).
omar
committed
on 31 Jul 2018
|
|
Drag and Drop: Clear payload buffers more consistently in ClearDragAndDrop() + BeginDragDropTargetCustom() can't succeed with hidden contents. (#143)
omar
committed
on 31 Jul 2018
|
|
|
|
Drag and Drop: Payload stays available and under the mouse if the source stops being submitted, however the tooltip is replaced by "..." + moved FrameScopeActive = false at the bottom of EndFrame() for safety. (#1725)
omar
committed
on 31 Jul 2018
|
|
2018-07-30 |
InvisibleButton: Added an assert to catch common type of passing zero-sized dimensions. (#1983)
omar
committed
on 30 Jul 2018
|
Made assertion more clear when trying to call Begin() outside of the NewFrame()..EndFrame() scope. (#1987)
omar
committed
on 30 Jul 2018
|
|
Internals: Changed signature of ShadeVerts functions to remove pointers. (#1286, #1700, #1986)
omar
committed
on 30 Jul 2018
|
|
|
|
Speculative va_copy() fix for old versions of GCC/Clang. (cannot repro) (#1085)
omar
committed
on 30 Jul 2018
|
|
Visual Studio: calling into _vsnprintf. (#1085)
omar
committed
on 30 Jul 2018
|
|
Internals: Fixed HoveredIdTimer so it is safe to call SetHoveredId() multiple times without altering the timer.
omar
committed
on 30 Jul 2018
|
|
2018-07-27 |
CollapseButton: Added hovering highlight + minor consistency tweaks.
omar
committed
on 27 Jul 2018
|
Internals: Drag and Drop: default drop preview use a narrower clipping rectangle (no effect here, but other branches uses a narrow clipping rectangle that was too small so this is a fix for it) + Comments
omar
committed
on 27 Jul 2018
|
|
2018-07-26 |
|
Internals: Changed SplitterBehavior() signature to be consistent with other similar signatures. (#319).
omar
committed
on 26 Jul 2018
|
|
Internals: Extracted part of Begin into UpdateWindowParentAndRootLinks(). Useful to call to keep state updated immediately (namely useful for docking) + small tidying up of imgui_internal.h
omar
committed
on 26 Jul 2018
|
|
Assert that fmt != NULL before calling vsnprintf (#1969)
...
OswaldHurlem
authored
on 26 Jul 2018
omar
committed
on 26 Jul 2018
|
|
|
|
Internals: Child windows that are clipped or part of a collapsed parent are not marked as collapsed anymore, but just a separate hidden marker set. We distinguish hiding for size measurement vs hiding for other reasons. Cleaned a little the end of Begin.
omar
committed
on 26 Jul 2018
|
|
Nav: Tweaked CTRL+TAB to hide visual noise on fast switch + fading out screen dimming and highlight to make the experience less harsh
omar
committed
on 26 Jul 2018
|