Skip to content

Commit e9be45f

Browse files
committed
Fix arrow horizontal displacement
1 parent 87988b2 commit e9be45f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/icons/LeftArrow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected void paintNotSelected(Graphics g) {
3737
//center arrow, by shifting y up by half of the bounds.height
3838
dy -= poly.getBounds().getHeight() / 2;
3939
//shift the arrow to the right a little bit
40-
dx += poly.getBounds().getWidth() / 5;
40+
dx += poly.getBounds().getWidth() / 8;
4141
poly.translate(dx, dy);
4242
g.fillPolygon(poly);
4343
}

0 commit comments

Comments
 (0)