[cimgui 1.53.1] ImDrawCornerFlags: switch BotLeft and BotRight

This commit is contained in:
Malik Olivier Boussejra 2018-04-30 21:49:31 +09:00
parent 8ec33c5697
commit d0543bbcdd

View File

@ -363,8 +363,8 @@ bitflags!(
pub struct ImDrawCornerFlags: c_int { pub struct ImDrawCornerFlags: c_int {
const TopLeft = 1 << 0; const TopLeft = 1 << 0;
const TopRight = 1 << 1; const TopRight = 1 << 1;
const BotRight = 1 << 2; const BotLeft = 1 << 2;
const BotLeft = 1 << 3; const BotRight = 1 << 3;
const Top = ImDrawCornerFlags::TopLeft.bits const Top = ImDrawCornerFlags::TopLeft.bits
| ImDrawCornerFlags::TopRight.bits; | ImDrawCornerFlags::TopRight.bits;
const Bot = ImDrawCornerFlags::BotLeft.bits const Bot = ImDrawCornerFlags::BotLeft.bits