ScrollPane: fixed UI artifact at bottom right corner of scroll pane if both scroll bars are visible, which was caused by Component.innerFocusWidth > 0 (issue #35)

This commit is contained in:
Karl Tauber
2020-01-14 15:03:07 +01:00
parent 5c3638a5a4
commit 655bf112ac

View File

@@ -78,6 +78,8 @@ public class FlatBorder
float arc = isCellEditor ? 0 : getArc( c );
if( isFocused( c ) ) {
float innerFocusWidth = !(c instanceof JScrollPane) ? this.innerFocusWidth : 0;
g2.setColor( getFocusColor( c ) );
FlatUIUtils.paintComponentOuterBorder( g2, x, y, width, height, focusWidth,
getLineWidth() + scale( innerFocusWidth ), arc );