omar/imgui: Release v1.33

Name: imgui

Owner: omar

Release: v1.33

Released: 2015-02-22

License: MIT

Release Assets:

  • InputText: having a InputText widget active doesn't steal mouse inputs from clicking on a button before losing focus (relate to #134)
  • InputText: cursor/selection/undo stack persist when using other widgets and getting back to same (#134).
  • InputText: fix effective buffer size being smaller than necessary by 1 byte (so if you give 3 bytes you can input 2 ascii chars + zero terminator, which is correct).
  • Added IsAnyItemActive().
  • Child window explicitly inherit collapse state from parent (so if user keeps submitting items even thought Begin has returned 'false' the child items will be clipped faster).
  • BeginChild() return a bool the same way Begin() does. if true you can skip submitting content.
  • Removed extraneous (1,1) padding on child window (pointed out in #125)
  • Columns: doesn't bail out when SkipItems is set (fix #136)
  • Columns: Separator() within column correctly vertical offset all cells (pointed out in #125)
  • GetColumnOffset() / SetColumnOffset() handles padding values more correctly so matching columns can be lined up between a parent and a child window (cf. #125)
  • Fix ImFont::BuildLookupTable() potential dangling pointer dereference (fix #131)
  • Fix hovering of child window extending past their parent not taking account of parent clipping rectangle (fix #137)
  • Sliders: value text is clipped inside the frame when resizing sliders to be small.
  • ImGuITextFilter::Draw() use regular width call rather than computing its own arbitrary width.
  • ImGuiTextFilter: can take a default filter string during construction.

To top