Skip to content

Commit

Permalink
\n will be replaced with a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
Luncaaa committed Jun 29, 2023
1 parent 84d9359 commit 67cad8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public String getText() {
public void setText(String text) {
this.text = text;
this.config.set("text", text);
this.display.setText(text);
this.display.setText(text.replace("\\n", "\n"));
this.save();
}

Expand Down

0 comments on commit 67cad8f

Please sign in to comment.