IDEA-219192 Can't see hard wrap guide.

GitOrigin-RevId: f953d218ba6ce08f7faeda9fb4b6401e5b89f96a
This commit is contained in:
Dmitry Batrak
2019-08-06 12:05:29 +03:00
committed by intellij-monorepo-bot
parent c2c838098e
commit bf3eefc4b0

View File

@@ -182,7 +182,9 @@ public class EditorPainter implements TextDrawingCallback {
if (visualGuidesColor != null) {
g.setColor(visualGuidesColor);
for (Integer marginX : myCorrector.softMarginsX()) {
LinePainter2D.paint((Graphics2D)g, marginX, 0, marginX, clip.height);
if (marginX != baseMarginX) {
LinePainter2D.paint((Graphics2D)g, marginX, 0, marginX, clip.height);
}
}
}
}