| 74 | } |
| 75 | |
| 76 | void ShowTextInput() |
| 77 | { |
| 78 | auto* banner = GetBanner(GetBannerIndex()); |
| 79 | if (banner != nullptr) |
| 80 | { |
| 81 | auto bannerText = banner->getText(); |
| 82 | WindowTextInputRawOpen( |
| 83 | this, WIDX_SIGN_TEXT, STR_SIGN_TEXT_TITLE, STR_SIGN_TEXT_PROMPT, {}, bannerText.c_str(), 32); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | public: |
| 88 | void onOpen() override |
nothing calls this directly
no test coverage detected