| 1533 | return r; |
| 1534 | } |
| 1535 | std::tuple<bool, float> PySubLayout::stepper_float(const std::string& label, float value, |
| 1536 | const std::vector<float>& steps) { |
| 1537 | advance_child(); |
| 1538 | apply_state(); |
| 1539 | auto r = parent_->stepper_float(label, value, steps); |
| 1540 | pop_per_item_state(); |
| 1541 | return r; |
| 1542 | } |
| 1543 | std::tuple<bool, int> PySubLayout::radio_button(const std::string& label, int current, int value) { |
| 1544 | advance_child(); |
| 1545 | apply_state(); |