Skip to content

Commit

Permalink
Workaround for Bug 3129 - scripting console output font
Browse files Browse the repository at this point in the history
Arvid did some research and found out the the right font should be already set in the createPartControl method. We don't know yet why it doesn't work, but for now we solve it by setting the font in the printMessage method.
  • Loading branch information
Valentin Georgiev committed Feb 28, 2012
1 parent 356ae92 commit bc78579
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -401,6 +401,7 @@ public void printMessage(String message) {

synchronized (output) {
output.append(message);
output.setFont(JFaceResources.getTextFont());
output.redraw();
}
}
Expand Down

0 comments on commit bc78579

Please sign in to comment.