flip width/height

This commit is contained in:
Sergey Ignatov
2014-12-02 19:26:30 +03:00
parent 0a4321b1d8
commit 97bc52f4ae
@@ -483,7 +483,7 @@ public class EditorMarkupModelImpl extends MarkupModelImpl implements EditorMark
if (!transparent()) {
g.setColor(getEditor().getColorsScheme().getDefaultBackground());
Rectangle bounds = getBounds();
g.fillRect(bounds.x, bounds.y, bounds.height, bounds.width);
g.fillRect(bounds.x, bounds.y, bounds.width, bounds.height);
}
if (myErrorStripeRenderer != null) {