refactor: improved inputs distribution
This commit is contained in:
parent
7887afc6af
commit
3041e821a7
|
@ -57,20 +57,10 @@ pub fn signal_reducing_page(wrapper: &Box) {
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let mut row_position = 0i32;
|
|
||||||
|
|
||||||
for (id, elem) in all_inputs.iter().enumerate() {
|
for (id, elem) in all_inputs.iter().enumerate() {
|
||||||
if id % 3 == 0 {
|
let row = id as i32 / 3;
|
||||||
row_position += 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
input_block.attach(
|
input_block.attach(elem.get(), (id as i32) - (3 * row), row, 1, 1);
|
||||||
elem.clone().get(),
|
|
||||||
(id as i32) - (3 * row_position),
|
|
||||||
row_position,
|
|
||||||
1,
|
|
||||||
1,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let calculate_button = Button::builder().label("Расчитать").build();
|
let calculate_button = Button::builder().label("Расчитать").build();
|
||||||
|
|
Loading…
Reference in New Issue