Skip to content

Commit

Permalink
[cimgui 1.53.1] ImDrawCornerFlags: switch BotLeft and BotRight
Browse files Browse the repository at this point in the history
  • Loading branch information
malikolivier committed Apr 30, 2018
1 parent 8ec33c5 commit d0543bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imgui-sys/src/lib.rs
Expand Up @@ -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
Expand Down

0 comments on commit d0543bb

Please sign in to comment.