From d0543bbcdd1f598a368cabcffa07fdc7a530d579 Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Mon, 30 Apr 2018 21:49:31 +0900 Subject: [PATCH] [cimgui 1.53.1] ImDrawCornerFlags: switch BotLeft and BotRight --- imgui-sys/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui-sys/src/lib.rs b/imgui-sys/src/lib.rs index 9888a0b..fe8d8fc 100644 --- a/imgui-sys/src/lib.rs +++ b/imgui-sys/src/lib.rs @@ -363,8 +363,8 @@ bitflags!( pub struct ImDrawCornerFlags: c_int { const TopLeft = 1 << 0; const TopRight = 1 << 1; - const BotRight = 1 << 2; - const BotLeft = 1 << 3; + const BotLeft = 1 << 2; + const BotRight = 1 << 3; const Top = ImDrawCornerFlags::TopLeft.bits | ImDrawCornerFlags::TopRight.bits; const Bot = ImDrawCornerFlags::BotLeft.bits