Add a line break when logging stuff

This commit is contained in:
SerpentSpirale 2021-12-04 13:46:50 +01:00
parent bf41008851
commit 6488b611ef

View File

@ -68,7 +68,7 @@ public class LoggerView extends ConstraintLayout {
logListener = text -> {
if(log.getVisibility() != VISIBLE) return;
post(() -> {
log.append(text);
log.append(text + '\n');
scrollView.fullScroll(View.FOCUS_DOWN);
});