Skip to content

Commit a0f7978

Browse files
committed
qt: enable wordWrap for peers-tab detail services
1 parent d22e7ee commit a0f7978

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/qt/forms/debugwindow.ui

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1204,6 +1204,9 @@
12041204
<property name="textFormat">
12051205
<enum>Qt::PlainText</enum>
12061206
</property>
1207+
<property name="wordWrap">
1208+
<bool>true</bool>
1209+
</property>
12071210
<property name="textInteractionFlags">
12081211
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
12091212
</property>

src/qt/guiutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ QString formatServicesStr(quint64 mask)
708708
}
709709

710710
if (strList.size())
711-
return strList.join(" & ");
711+
return strList.join(", ");
712712
else
713713
return QObject::tr("None");
714714
}

0 commit comments

Comments
 (0)