Skip to content

Commit

Permalink
#816 - Separation Column Handling ... shorten indicator added
Browse files Browse the repository at this point in the history
  • Loading branch information
eselmeister committed Nov 19, 2021
1 parent e03c0c8 commit 1c5aaf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static String getColumnLabel(ISeparationColumn separationColumn, int name
if(separationColumn != null) {
String name = separationColumn.getName();
if(name.length() > nameLength) {
name = name.substring(0, nameLength);
name = name.substring(0, nameLength) + "...";
}
builder.append(name);
builder.append(" (");
Expand Down

0 comments on commit 1c5aaf4

Please sign in to comment.