Skip to content

Commit ec7996e

Browse files
committed
Reintroduced copy error button.
Revert "Reverted 'copy error' button for 1.0.5, waiting for a better UI design" This reverts commit cf4584e.
1 parent 203ca4f commit ec7996e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/processing/app/EditorStatus.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public void unnotice(String unmessage) {
125125
public void error(String message) {
126126
mode = ERR;
127127
this.message = message;
128-
// copyErrorButton.setVisible(true);
128+
copyErrorButton.setVisible(true);
129129
repaint();
130130
}
131131

@@ -196,7 +196,7 @@ public void progressIndeterminate(String message)
196196
progressBar.setIndeterminate(true);
197197
progressBar.setValue(50);
198198
progressBar.setVisible(true);
199-
// copyErrorButton.setVisible(false);
199+
copyErrorButton.setVisible(false);
200200
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
201201
repaint();
202202
}

0 commit comments

Comments
 (0)