mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +00:00
fmt
This commit is contained in:
parent
39e45251b3
commit
68a5af174c
@ -40,11 +40,11 @@ fn main() {
|
||||
// Create clipper with st
|
||||
let clip = imgui::ListClipper::new(num_rows).begin(ui);
|
||||
for row_num in clip.iter() {
|
||||
ui.table_next_row();
|
||||
for col_num in 0..num_cols {
|
||||
ui.table_set_column_index(col_num);
|
||||
ui.text(format!("Hello {},{}", col_num, row_num));
|
||||
}
|
||||
ui.table_next_row();
|
||||
for col_num in 0..num_cols {
|
||||
ui.table_set_column_index(col_num);
|
||||
ui.text(format!("Hello {},{}", col_num, row_num));
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user