| 1508 | return r; |
| 1509 | } |
| 1510 | std::tuple<bool, float> PySubLayout::input_float(const std::string& label, float value, |
| 1511 | float step, float step_fast, |
| 1512 | const std::string& format) { |
| 1513 | advance_child(); |
| 1514 | apply_state(); |
| 1515 | auto r = parent_->input_float(label, value, step, step_fast, format); |
| 1516 | pop_per_item_state(); |
| 1517 | return r; |
| 1518 | } |
| 1519 | std::tuple<bool, int> PySubLayout::input_int(const std::string& label, int value, |
| 1520 | int step, int step_fast) { |
| 1521 | advance_child(); |
no test coverage detected