We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d22e7ee commit a0f7978Copy full SHA for a0f7978
src/qt/forms/debugwindow.ui
@@ -1204,6 +1204,9 @@
1204
<property name="textFormat">
1205
<enum>Qt::PlainText</enum>
1206
</property>
1207
+ <property name="wordWrap">
1208
+ <bool>true</bool>
1209
+ </property>
1210
<property name="textInteractionFlags">
1211
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
1212
src/qt/guiutil.cpp
@@ -708,7 +708,7 @@ QString formatServicesStr(quint64 mask)
708
}
709
710
if (strList.size())
711
- return strList.join(" & ");
+ return strList.join(", ");
712
else
713
return QObject::tr("None");
714
0 commit comments