Skip to content

Commit

Permalink
Fix textdata renderer trimming text without linebreaks too
Browse files Browse the repository at this point in the history
  • Loading branch information
bonii-xx committed Apr 25, 2016
1 parent 6ea7e05 commit ffd38cf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -201,7 +201,7 @@ public static String[] cropStringBySize(String s, String modifiers, int width, i
}
}

return s.trim().split("\r");
return s.split("\r");
}

//BEGIN METHODS FROM GUI
Expand Down

0 comments on commit ffd38cf

Please sign in to comment.