[cimgui 1.53.1] ImGuiInputTextFlags: Add NoUndoRedo

This commit is contained in:
Malik Olivier Boussejra 2018-04-30 12:41:05 +09:00
parent 5df5806936
commit 85bb975e40

View File

@ -292,6 +292,7 @@ bitflags!(
const AlwaysInsertMode = 1 << 13;
const ReadOnly = 1 << 14;
const Password = 1 << 15;
const NoUndoRedo = 1 << 16;
}
);