You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Renamed SetScrollPosHere() to SetScrollHere(). Kept inline redirection function (will obsolete). Renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion and make scrolling API consistent, because positions (e.g. cursor position) are not equivalent to scrolling amount.
Fixed PlotLines(), PlotHistogram() using incorrect hovering test so they would show their tooltip even when there is a popup between mouse and the graph.
Fixed window padding being reported incorrectly for child windows with borders when parent have no borders.
Fixed a bug with TextUnformatted() clipping of long text blob when clipping y1 line sits on the first line of text. (#257)
Fixed text baseline alignment of small button (no padding) after regular buttons.
Fixed ListBoxHeader() not honoring negative sizes the same way as BeginChild() or BeginChildFrame(). (#263)
Fixed warnings for more pedantic compiler settings (#258).
ImVector<> cannot be re-defined anymore, cannot be replaced with std::vector<>. Allowed us to clean up and optimise lots of code. Yeah! (#262)
ImDrawList: store pointer to their owner name for easier auditing/debugging.
Examples: added scroll tracking example with SetScrollFromCursorPos().
Examples: metrics windows render clip rectangle when hovering over a draw call.
Lots of small optimisation (particularly to run faster on unoptimised builds) and tidying up.
Added font links in extra_fonts/ + instructions for using compressed fonts in C array.
Removed obsolete GetDefaultFontData() function that would assert anyway. If you are updating from <1.30 you'll get a compile error instead of an assertion. (obsoleted 2015/01/11)