We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b55eb commit 9a17386Copy full SHA for 9a17386
app/src/processing/app/EditorStatus.java
@@ -452,12 +452,7 @@ public void keyTyped(KeyEvent event) {
452
add(progressBar);
453
progressBar.setVisible(false);
454
455
- copyErrorButton = new JButton(
456
- "<html>" + _("Copy error") + "<br>" + _("to clipboard") + "</html>");
457
- Font font = copyErrorButton.getFont();
458
- font = new Font(font.getName(), font.getStyle(), (int) (font.getSize()*0.7));
459
- copyErrorButton.setFont(font);
460
- copyErrorButton.setHorizontalAlignment(JLabel.CENTER);
+ copyErrorButton = new JButton(_("Copy error"));
461
add(copyErrorButton);
462
copyErrorButton.setVisible(false);
463
copyErrorButton.addActionListener(new ActionListener() {
0 commit comments