mirror of
https://github.com/transmission/transmission
synced 2025-02-21 21:57:01 +00:00
fix: broken tooltiop in GTK client peer flag tooltip (#2409)
This commit is contained in:
parent
db23ca4c6b
commit
c9f8f150ea
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue