mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Version 1.89.9
This commit is contained in:
parent
7b5fb33296
commit
fef3389157
@ -48,7 +48,7 @@ Breaking changes:
|
||||
Other changes:
|
||||
|
||||
- Tables: Made it possible to use SameLine(0,0) after TableNextColumn() or
|
||||
TableSetColumnIndex() in order to reuse line height from previous cell. (#3740)
|
||||
TableSetColumnIndex() in order to reuse line pos/height from previous cell. (#3740)
|
||||
- Tables: Made it possible to change style.CellPadding.y between rows. (#3740)
|
||||
- Nav, TreeNode: Pressing Left with ImGuiTreeNodeFlags_NavLeftJumpsBackHere now goes
|
||||
through proper navigation logic: honor scrolling and selection. (#1079, #1131)
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (main code and documentation)
|
||||
|
||||
// Help:
|
||||
|
6
imgui.h
6
imgui.h
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (headers)
|
||||
|
||||
// Help:
|
||||
@ -25,8 +25,8 @@
|
||||
|
||||
// Library Version
|
||||
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
|
||||
#define IMGUI_VERSION "1.89.9 WIP"
|
||||
#define IMGUI_VERSION_NUM 18985
|
||||
#define IMGUI_VERSION "1.89.9"
|
||||
#define IMGUI_VERSION_NUM 18990
|
||||
#define IMGUI_HAS_TABLE
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (demo code)
|
||||
|
||||
// Help:
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (drawing and font code)
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (internal structures/api)
|
||||
|
||||
// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (tables and columns code)
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,4 @@
|
||||
// dear imgui, v1.89.9 WIP
|
||||
// dear imgui, v1.89.9
|
||||
// (widgets code)
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user