mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 18:35:37 +01:00
Fixes #29
This commit is contained in:
@@ -978,10 +978,17 @@ public class ErrorCheckerService implements Runnable{
|
||||
}
|
||||
}
|
||||
}
|
||||
if (editor.ta.getCaretLine() != lastCaretLine) {
|
||||
|
||||
// This line isn't an error line anymore, so probably just clear it
|
||||
if (editor.getStatusMode() == EditorStatus.ERR
|
||||
|| editor.getStatusMode() == EditorStatus.NOTICE) {
|
||||
editor.statusEmpty();
|
||||
lastCaretLine = editor.ta.getCaretLine();
|
||||
return;
|
||||
}
|
||||
// if (editor.ta.getCaretLine() != lastCaretLine) {
|
||||
// editor.statusEmpty();
|
||||
// lastCaretLine = editor.ta.getCaretLine();
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user