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:
parent
d22e7ee933
commit
a0f7978674
2 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -708,7 +708,7 @@ QString formatServicesStr(quint64 mask)
|
|||
}
|
||||
|
||||
if (strList.size())
|
||||
return strList.join(" & ");
|
||||
return strList.join(", ");
|
||||
else
|
||||
return QObject::tr("None");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue