mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-27 13:28:28 +00:00
[cimgui 1.53.1] Rename ImGuiTreeNodeFlags::AllowOverlapMode to ImGuiTreeNodeFlags::AllowItemOvelap
This commit is contained in:
parent
0c71370546
commit
a5ed022eee
@ -5,6 +5,7 @@
|
|||||||
- Upgrade to imgui/cimgui 1.53.1
|
- Upgrade to imgui/cimgui 1.53.1
|
||||||
- Rename `Ui::show_test_window` to `Ui::show_demo_window`.
|
- Rename `Ui::show_test_window` to `Ui::show_demo_window`.
|
||||||
- Rename `sys::igGetItemsLineHeightWithSpacing` to `sys::igGetFrameHeightWithSpacing`.
|
- Rename `sys::igGetItemsLineHeightWithSpacing` to `sys::igGetFrameHeightWithSpacing`.
|
||||||
|
- Rename `ImGuiTreeNodeFlags::AllowOverlapMode` to `ImGuiTreeNodeFlags::AllowItemOverlap`.
|
||||||
|
|
||||||
|
|
||||||
## [0.0.18] - 2017-12-23
|
## [0.0.18] - 2017-12-23
|
||||||
|
|||||||
@ -298,7 +298,9 @@ bitflags!(
|
|||||||
pub struct ImGuiTreeNodeFlags: c_int {
|
pub struct ImGuiTreeNodeFlags: c_int {
|
||||||
const Selected = 1;
|
const Selected = 1;
|
||||||
const Framed = 1 << 1;
|
const Framed = 1 << 1;
|
||||||
|
#[deprecated(since = "0.0.19", note = "please use AllowItemOverlap instead")]
|
||||||
const AllowOverlapMode = 1 << 2;
|
const AllowOverlapMode = 1 << 2;
|
||||||
|
const AllowItemOverlap = 1 << 2;
|
||||||
const NoTreePushOnOpen = 1 << 3;
|
const NoTreePushOnOpen = 1 << 3;
|
||||||
const NoAutoOpenOnLog = 1 << 4;
|
const NoAutoOpenOnLog = 1 << 4;
|
||||||
const DefaultOpen = 1 << 5;
|
const DefaultOpen = 1 << 5;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user