| 616 | |
| 617 | |
| 618 | lua::ImguiHandle TreeParent::AddCheckbox(char const* label, std::optional<bool> checked) |
| 619 | { |
| 620 | auto e = AddChild<Checkbox>(); |
| 621 | e->Label = label; |
| 622 | if (checked) e->Checked = *checked; |
| 623 | return e; |
| 624 | } |
| 625 | |
| 626 | |
| 627 | lua::ImguiHandle TreeParent::AddRadioButton(char const* label, std::optional<bool> active) |
nothing calls this directly
no outgoing calls
no test coverage detected