horizontal scrollbar bug fixed in painting.

cusax-fix
Yana Stamcheva 20 years ago
parent ddfe0404ed
commit 17b07a6242

@ -181,13 +181,14 @@ protected void paintThumb(Graphics g, JComponent c, Rectangle thumbBounds)
imgHeight);
g.drawImage(leftImage, 0, 0,
indentWidth, thumbBounds.height, null);
indentWidth, thumbBounds.height-2, null);
g.drawImage(middleImage, thumbBounds.x+indentWidth, thumbBounds.y,
thumbBounds.width-2*indentWidth, thumbBounds.height , null);
g.drawImage(middleImage, indentWidth, thumbBounds.y,
thumbBounds.width-indentWidth,
thumbBounds.height-2 , null);
g.drawImage(rightImage, thumbBounds.width-indentWidth, thumbBounds.y,
indentWidth, thumbBounds.height, null);
indentWidth, thumbBounds.height-2, null);
g.drawImage(horizontalThumbHandle,
thumbBounds.width/2-horizontalThumbHandle.getWidth()/2,

Loading…
Cancel
Save