From a4dba71d1a866f443a31254f60f703e162c5354e Mon Sep 17 00:00:00 2001 From: Miguel Michelson Date: Sat, 28 May 2016 20:09:05 -0300 Subject: [PATCH] more on formatting --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 76fdf4d..f1e369a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 {