| 742 | } |
| 743 | |
| 744 | std::string_view Button::getTitleText() const |
| 745 | { |
| 746 | if (!_titleRenderer) |
| 747 | { |
| 748 | return ""; |
| 749 | } |
| 750 | |
| 751 | return _titleRenderer->getString(); |
| 752 | } |
| 753 | |
| 754 | void Button::setTitleColor(const Color3B& color) |
| 755 | { |
no test coverage detected