161 | @@ -162,7 +162,8 @@ QVariant PeerTableModel::data(const QModelIndex &index, int role) const
162 | case NetNodeId:
163 | return (qint64)rec->nodeStats.nodeid;
164 | case Address:
165 | - return QString::fromStdString(rec->nodeStats.addrName);
166 | + // prepend to peer address down-arrow symbol for inbound connection and up-arrow for outbound connection
167 | + return QString(rec->nodeStats.fInbound ? "↓ " : "↑ ") + QString::fromStdString(rec->nodeStats.addrName);
Does those unicode char (86 93 and 86 91) work on all supported platforms (especially older windows version)?
Would using an Icon make more sense?
Could You define 'older windows version'?
Windows 7 or later is what we are currently supporting.
I can not test for Windows, since I do not have any Windows. Maybe someone with Windows testing capabilities can apply this one-liner and check?
These characters have been in unicode since time immemorial [Unicode 1.1.0 (June, 1993], I wouldn't be afraid of them not being supported.