Skip to content

Commit

Permalink
Reverted 'copy error' button for 1.0.5, waiting for a better UI design
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed May 15, 2013
1 parent ffdb0d7 commit cf4584e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/processing/app/EditorStatus.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void unnotice(String unmessage) {
public void error(String message) {
mode = ERR;
this.message = message;
copyErrorButton.setVisible(true);
// copyErrorButton.setVisible(true);
repaint();
}

Expand Down Expand Up @@ -196,7 +196,7 @@ public void progressIndeterminate(String message)
progressBar.setIndeterminate(true);
progressBar.setValue(50);
progressBar.setVisible(true);
copyErrorButton.setVisible(false);
// copyErrorButton.setVisible(false);
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
repaint();
}
Expand Down

0 comments on commit cf4584e

Please sign in to comment.