Skip to content

Commit

Permalink
qt: enable wordWrap for peers-tab detail services
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed May 9, 2021
1 parent d22e7ee commit a0f7978
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/qt/forms/debugwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/guiutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ QString formatServicesStr(quint64 mask)
}

if (strList.size())
return strList.join(" & ");
return strList.join(", ");
else
return QObject::tr("None");
}
Expand Down

0 comments on commit a0f7978

Please sign in to comment.