Thomas Carotti
Results
1
comments of
Thomas Carotti
This was annoying me as well, so I found a fix.. Change ```ts case 'notice': this.project.noticeOut.clear(); this.project.noticeOut.show(true); this.project.noticeOut.append(psm.prettyTextToString(params.message)); return; ``` To ```ts case 'notice': this.project.noticeOut.show(true); this.project.noticeOut.append(psm.prettyTextToString(params.message)); this.project.noticeOut.append("\n"); return; ``` In...