This commit is contained in:
Manindra Moharana
2014-04-15 02:39:12 +05:30
parent 1ce554bc8e
commit a41e77df6f

View File

@@ -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();
// }
}
/**