| 814 | } |
| 815 | |
| 816 | void OnQueryTextFinished(std::optional<std::string> str) override |
| 817 | { |
| 818 | if (!str.has_value() || str->empty()) return; |
| 819 | |
| 820 | _settings_client.network.connect_to_ip = std::move(*str); |
| 821 | NetworkAddServer(_settings_client.network.connect_to_ip); |
| 822 | NetworkRebuildHostList(); |
| 823 | } |
| 824 | |
| 825 | void OnResize() override |
| 826 | { |
nothing calls this directly
no test coverage detected