disabling those tiny rects, don't like 'em anymore

This commit is contained in:
Manindra Moharana
2013-09-25 02:47:57 +05:30
parent f5384ba4be
commit b4573323f7

View File

@@ -365,12 +365,15 @@ public class TextAreaPainter extends processing.app.syntax.TextAreaPainter {
// gfx.fillRect(x1, y, rw, height);
// Let the painting begin!
gfx.setColor(errorMarkerColor);
if (isWarning) {
gfx.setColor(warningMarkerColor);
}
gfx.fillRect(1, y + 2, 3, height - 2);
// Little rect at starting of a line containing errors - disabling it for now
// gfx.setColor(errorMarkerColor);
// if (isWarning) {
// gfx.setColor(warningMarkerColor);
// }
// gfx.fillRect(1, y + 2, 3, height - 2);
gfx.setColor(errorColor);
if (isWarning) {
gfx.setColor(warningColor);