fix: broken tooltiop in GTK client peer flag tooltip (#2409)

This commit is contained in:
Charles Kerr 2022-01-16 08:48:01 -06:00 committed by GitHub
parent db23ca4c6b
commit c9f8f150ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1498,7 +1498,7 @@ bool DetailsDialog::Impl::onPeerViewQueryTooltip(int x, int y, bool keyboard_tip
std::ostringstream gstr;
gstr << "<b>" << Glib::Markup::escape_text(name) << "</b>\n" << addr << "\n \n";
for (auto const ch : flagstr)
for (char const ch : flagstr)
{
char const* s = nullptr;