Skip to content
This repository was archived by the owner on Oct 4, 2019. It is now read-only.

Commit 5a082c1

Browse files
committed
disabling those tiny rects, don't like 'em anymore
1 parent c5a6864 commit 5a082c1

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/processing/mode/experimental/TextAreaPainter.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,15 @@ protected void paintErrorLine(Graphics gfx, int line, int x) {
365365
// gfx.fillRect(x1, y, rw, height);
366366

367367
// Let the painting begin!
368-
gfx.setColor(errorMarkerColor);
369-
if (isWarning) {
370-
gfx.setColor(warningMarkerColor);
371-
}
372-
gfx.fillRect(1, y + 2, 3, height - 2);
368+
369+
// Little rect at starting of a line containing errors - disabling it for now
370+
// gfx.setColor(errorMarkerColor);
371+
// if (isWarning) {
372+
// gfx.setColor(warningMarkerColor);
373+
// }
374+
// gfx.fillRect(1, y + 2, 3, height - 2);
373375

376+
374377
gfx.setColor(errorColor);
375378
if (isWarning) {
376379
gfx.setColor(warningColor);

0 commit comments

Comments
 (0)