7152952: [macosx] List rows overlap with enlarged font

Reviewed-by: art, rupashka
This commit is contained in:
Alexander Scherbatiy 2012-06-07 18:24:15 +04:00
parent 980d62fd25
commit 2b73b29421

View File

@ -245,6 +245,15 @@ final class LWListPeer
}
}
@Override
public void setFont(Font font) {
super.setFont(font);
if (getView() != null) {
getView().setFont(font);
LWListPeer.this.revalidate();
}
}
private final class JListDelegate extends JList<Object> {
JListDelegate() {