From b7bb27fdbd028385e9c7a7220a907ee556b87295 Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Mon, 30 Apr 2018 12:12:49 +0900 Subject: [PATCH] [cimgui 1.53.1] Add ImGuiCol::DragDropTarget --- imgui-sys/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/imgui-sys/src/lib.rs b/imgui-sys/src/lib.rs index 6ddbe7a..b6574a0 100644 --- a/imgui-sys/src/lib.rs +++ b/imgui-sys/src/lib.rs @@ -83,6 +83,7 @@ pub enum ImGuiCol { PlotHistogramHovered, TextSelectedBg, ModalWindowDarkening, + DragDropTarget, } impl ImGuiCol { #[deprecated(since = "0.0.19", note = "ComboBg has been merged with PopupBg. Please use PopupBg instead")] @@ -133,11 +134,12 @@ impl ImGuiCol { PlotHistogramHovered, TextSelectedBg, ModalWindowDarkening, + DragDropTarget, ]; values } } -pub const ImGuiCol_COUNT: usize = 42; +pub const ImGuiCol_COUNT: usize = 43; /// A variable identifier for styling #[repr(C)]