mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-19 09:28:27 +00:00
more on formatting
This commit is contained in:
parent
5ad669e9c0
commit
a4dba71d1a
@ -399,8 +399,8 @@ impl<'ui> Ui<'ui> {
|
||||
}
|
||||
pub fn spacing(&self) { unsafe { imgui_sys::igSpacing() }; }
|
||||
|
||||
pub fn columns<'p>(&self, count: i32, id: ImStr<'p>, border: bool){
|
||||
unsafe { imgui_sys::igColumns(count, id.as_ptr(), border ) }
|
||||
pub fn columns<'p>(&self, count: i32, id: ImStr<'p>, border: bool){
|
||||
unsafe { imgui_sys::igColumns(count, id.as_ptr(), border) }
|
||||
}
|
||||
|
||||
pub fn next_column(&self) {
|
||||
@ -416,7 +416,7 @@ impl<'ui> Ui<'ui> {
|
||||
}
|
||||
|
||||
pub fn set_column_offset(&self, column_index: i32, offset_x: f32) {
|
||||
unsafe { imgui_sys::igSetColumnOffset(column_index, offset_x ) }
|
||||
unsafe { imgui_sys::igSetColumnOffset(column_index, offset_x) }
|
||||
}
|
||||
|
||||
pub fn get_column_width(&self, i: i32) -> f32 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user