Skip to content

Commit

Permalink
Increase max length of popup txt
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed May 25, 2016
1 parent 8dd9069 commit 4981517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/src/main/java/io/bitsquare/gui/main/overlays/Overlay.java
Original file line number Diff line number Diff line change
Expand Up @@ -752,8 +752,8 @@ protected void doClose() {
}

protected void setTruncatedMessage() {
if (message != null && message.length() > 1500)
truncatedMessage = StringUtils.abbreviate(message, 1500);
if (message != null && message.length() > 1800)
truncatedMessage = StringUtils.abbreviate(message, 1800);
else
truncatedMessage = message;
}
Expand Down

0 comments on commit 4981517

Please sign in to comment.