| 245 | // ElementConfigSubMenu |
| 246 | |
| 247 | ElementConfigSubMenu::ElementConfigSubMenu(const Rml::String &tag) : Rml::Element(tag) { |
| 248 | SetProperty(Rml::PropertyId::Display, Rml::Style::Display::Flex); |
| 249 | SetProperty("width", "100%"); |
| 250 | SetProperty("height", "100%"); |
| 251 | |
| 252 | recompui::Element this_compat(this); |
| 253 | recompui::ContextId context = get_current_context(); |
| 254 | config_sub_menu = context.create_element<ConfigSubMenu>(&this_compat); |
| 255 | } |
| 256 | |
| 257 | ElementConfigSubMenu::~ElementConfigSubMenu() { |
| 258 |
nothing calls this directly
no outgoing calls
no test coverage detected