2017-10-24 |
Renamed IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS to IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS for consistency. (ref #238, #520, #738)
omar
committed
on 24 Oct 2017
|
---|---|
Added IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS support in imconfig.h (#1038)
omar
committed
on 24 Oct 2017
|
|
Add missing CloseClipboard call
Patrick Doane
authored
on 24 Oct 2017
omar
committed
on 24 Oct 2017
|
|
ImFontAtlas: Fixed memory leak if stbtt_InitFont() returned false. (#1391)
omar
committed
on 24 Oct 2017
|
|
Fixed typos
omar
committed
on 24 Oct 2017
|
|
Examples: DirectX9/10/11: Tweak usage of SetCapture/ReleaseCapture. (#1375)
...
omar
committed
on 24 Oct 2017
|
|
ColorButton: As a small convenience, provide a text baseline.
omar
committed
on 24 Oct 2017
|
|
ColorButton: Fixed rendering color button with a checkerboard if the transparency comes from the global style.Alpha and not from the actual source color.
omar
committed
on 24 Oct 2017
|
|
2017-10-23 |
Internals: ImLerp() helper for ImVec4
omar
committed
on 23 Oct 2017
|
Fixed calling SetNextTreeNodeOpen() on a collapsed window leaking to next frame.
omar
committed
on 23 Oct 2017
|
|
Factorized some code (+ declared as static function without namespace, a pattern with the Nav branch has started to use)
omar
committed
on 23 Oct 2017
|
|
Examples: GLFW+GL2/GL3: Minor tweaks, comments.
omar
committed
on 23 Oct 2017
|
|
Examples: DirectX9/10/11: Added WM_SYSKEYDOWN / WM_SYSKEYUP handlers so e.g. VK_MENU can be read.
omar
committed
on 23 Oct 2017
|
|
Examples: DirectX9/10/11: Renamed WndProc handler to use a generic Win32 name + returning 0 to all messages is more correct.
omar
committed
on 23 Oct 2017
|
|
Merge branch 'Gargaj-patch-1'
omar
committed
on 23 Oct 2017
|
|
Examples: DirectX10, DirectX11: Using SetCapture/ReleaseCapture to get correct behavior (#1375)
...
omar
committed
on 23 Oct 2017
|
|
Examples: DirectX9: Using SetCapture/ReleaseCapture to get correct behavior (#1375)
omar
committed
on 23 Oct 2017
|
|
Fixed compilation for #1375 + coding style fixes.
omar
committed
on 23 Oct 2017
|
|
Merge branch 'patch-1' of https://github.com/Gargaj/imgui into Gargaj-patch-1
omar
committed
on 23 Oct 2017
|
|
2017-10-22 |
MenuItem(): Tweaks to mimic exact spacing of BeginMenu() when inside a menu bar, which is a little misleading imho but may be useful. (#1387)
omar
committed
on 22 Oct 2017
|
MenuItem(): Tweak to not draw over all horizontal space when in horizontal layout mode. (#1387)
omar
committed
on 22 Oct 2017
|
|
Merge branch 'inolen-atlas_build_clear_font'
omar
committed
on 22 Oct 2017
|
|
Font: Renamed ImFont::Clear() to ImFont::ClearOutputData() for consistency with what ImFontAtlas does. DisplayOffset is set by constructor but not reset by ClearOutputData. (#1349)
omar
committed
on 22 Oct 2017
|
|
Demo: Fixed Fonts "set as default button" not having collading id on collapsed nodes.
omar
committed
on 22 Oct 2017
|
|
Merge branch 'atlas_build_clear_font' of https://github.com/inolen/imgui into inolen-atlas_build_clear_font
omar
committed
on 22 Oct 2017
|
|
2017-10-20 |
Comments
omar
committed
on 20 Oct 2017
|
Popups: Fixed right-click to close popups not handling modal windows properly. (~#439)
omar
committed
on 20 Oct 2017
|
|
Popups: similarly to previous commit, we fix reopening a popup within a popup stack from truncating the whole stack. This is done by properly refocusing the lower level popup. (~#439)
omar
committed
on 20 Oct 2017
|
|
Popups: fixed CloseInactivePopups() so that right-clicking to close one level of popups in a popups stack won't close the whole stack. This is done by properly refocusing the lower level popup. Fixes
87ae408 (~#439)
omar
committed
on 20 Oct 2017
|
|
Added OpenPopupOnItemClick(); helper which mimic BeginPopupContextItem() but doesn't do the open.
...
omar
committed
on 20 Oct 2017
|