This commit is contained in:
Alexander Zuev 2012-06-07 20:06:00 +04:00
commit efc7d9cbc2

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() {