Fix auth server list in add account pane

This commit is contained in:
yushijinhun 2019-02-23 21:49:38 +08:00
parent 0f33981c96
commit 46d27a04a2
No known key found for this signature in database
GPG Key ID: 5BC167F73EA558E4

View File

@ -510,6 +510,7 @@ public final class FXUtils {
public void updateItem(T item, boolean empty) {
super.updateItem(item, empty);
if (!empty) {
setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
setGraphic(graphicBuilder.apply(item));
}
}