blob: d3e8287837f19ceee394949f0124f402eccb0287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "CompoundConditionEditor.h"
namespace cru::theme_builder::components::conditions {
CompoundConditionEditor::CompoundConditionEditor() {
GetContainer()->AddChild(&children_container_);
GetContainer()->AddChild(&add_child_button_);
add_child_button_.SetChild(&add_child_button_text_);
add_child_button_text_.SetText(u"Add");
}
CompoundConditionEditor::~CompoundConditionEditor() {}
} // namespace cru::theme_builder::components::conditions
|