Skip to content

Commit 7103856

Browse files
committed
Properly clear EditorStatus.message with empty()
Partially resolves #1167 - EditorStatus.message no longer gets set to a string of spaces when cleared, which caused some UI bugs.
1 parent b8c0857 commit 7103856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/ui/Editor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2665,7 +2665,7 @@ public int getStatusMode() {
26652665
* Clear the status area.
26662666
*/
26672667
public void statusEmpty() {
2668-
statusNotice(EMPTY);
2668+
status.empty();
26692669
}
26702670

26712671

0 commit comments

Comments
 (0)