| 625 | |
| 626 | |
| 627 | lua::ImguiHandle TreeParent::AddRadioButton(char const* label, std::optional<bool> active) |
| 628 | { |
| 629 | auto e = AddChild<RadioButton>(); |
| 630 | e->Label = label; |
| 631 | if (active) e->Active = *active; |
| 632 | return e; |
| 633 | } |
| 634 | |
| 635 | |
| 636 | lua::ImguiHandle TreeParent::AddInputText(char const* label, std::optional<STDString> value) |
nothing calls this directly
no outgoing calls
no test coverage detected