0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

qt: enable wordWrap for peers-tab detail services

This commit is contained in:
randymcmillan 2021-04-24 19:22:45 -04:00
parent d22e7ee933
commit a0f7978674
No known key found for this signature in database
GPG key ID: 97966C06BB06757B
2 changed files with 4 additions and 1 deletions

View file

@ -1204,6 +1204,9 @@
<property name="textFormat">
<enum>Qt::PlainText</enum>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
</property>

View file

@ -708,7 +708,7 @@ QString formatServicesStr(quint64 mask)
}
if (strList.size())
return strList.join(" & ");
return strList.join(", ");
else
return QObject::tr("None");
}