Skip to content

Commit

Permalink
Fixed GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
EgonOlsen committed Mar 20, 2020
1 parent 6f0a38b commit fda0b79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Binary file modified dist/basicv2.jar
Binary file not shown.
6 changes: 5 additions & 1 deletion src/main/java/com/sixtyfour/runner/VisualMospeed.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,11 @@ public void println() {
}

private void scrollDown(JTextArea textArea) {
textArea.setCaretPosition(textArea.getDocument().getLength());
try {
textArea.setCaretPosition(textArea.getDocument().getLength());
} catch(Exception e) {
// Pffft...
}
}
};

Expand Down

0 comments on commit fda0b79

Please sign in to comment.