fix error handler details view font being small for some reason

This commit is contained in:
yugecin 2018-08-27 22:09:40 +02:00
parent 7a09bb303f
commit 3210b48141

View File

@ -101,6 +101,7 @@ public class ErrorHandler {
textArea.setTabSize(2); textArea.setTabSize(2);
textArea.setLineWrap(false); textArea.setLineWrap(false);
textArea.setWrapStyleWord(true); textArea.setWrapStyleWord(true);
textArea.setFont(message.getFont());
textArea.setText(messageBody); textArea.setText(messageBody);
ActionListener reportAction = new ActionListener() { ActionListener reportAction = new ActionListener() {