| 634 | |
| 635 | |
| 636 | lua::ImguiHandle TreeParent::AddInputText(char const* label, std::optional<STDString> value) |
| 637 | { |
| 638 | auto e = AddChild<InputText>(); |
| 639 | e->Label = label; |
| 640 | if (value) { |
| 641 | e->SetText(*value); |
| 642 | } |
| 643 | |
| 644 | return e; |
| 645 | } |
| 646 | |
| 647 | |
| 648 | lua::ImguiHandle TreeParent::AddCombo(char const* label) |