falltergeist
falltergeist copied to clipboard
Items contained in the UI::TextAreaList should receive input events
After adding a UI::TextArea into a UI::TextAreaList it will not receive input events anymore:
textArea->mouseClickHandler().add([=](...) {
// never called
});
textAreaList->addArea(std::move(textArea));
