Merge pull request #509 from dbr/buttonflags

Re-export imgui::widget::misc to expose ButtonFlags
This commit is contained in:
Jonathan Spira 2021-09-05 12:06:06 -07:00 committed by GitHub
commit 8940d64cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ pub use self::input::keyboard::*;
pub use self::input::mouse::*;
pub use self::input_widget::{
InputFloat, InputFloat2, InputFloat3, InputFloat4, InputInt, InputInt2, InputInt3, InputInt4,
InputText, InputTextMultiline,
InputText, InputTextFlags, InputTextMultiline,
};
pub use self::io::*;
pub use self::layout::*;
@ -41,6 +41,7 @@ pub use self::widget::drag::*;
pub use self::widget::image::*;
pub use self::widget::list_box::*;
pub use self::widget::menu::*;
pub use self::widget::misc::*;
pub use self::widget::progress_bar::*;
pub use self::widget::selectable::*;
pub use self::widget::slider::*;