| 1591 | pop_per_item_state(); |
| 1592 | } |
| 1593 | bool PySubLayout::image_button(const std::string& id, uint64_t texture_id, |
| 1594 | std::tuple<float, float> size, |
| 1595 | nb::object tint) { |
| 1596 | advance_child(); |
| 1597 | apply_state(); |
| 1598 | auto r = parent_->image_button(id, texture_id, size, tint); |
| 1599 | pop_per_item_state(); |
| 1600 | return r; |
| 1601 | } |
| 1602 | std::tuple<bool, std::string> PySubLayout::input_text_with_hint(const std::string& label, |
| 1603 | const std::string& hint, |
| 1604 | const std::string& value) { |
nothing calls this directly
no test coverage detected