Apply code review suggestions from @CyB3RC0nN0R 2

This commit is contained in:
delvh 2020-08-03 15:10:35 +02:00
parent 71bb329857
commit 2491812ba0
1 changed files with 4 additions and 2 deletions

View File

@ -35,8 +35,10 @@ public abstract class AbstractListCell<T, U extends Node> extends ListCell<T> {
@Override @Override
protected final void updateItem(T item, boolean empty) { protected final void updateItem(T item, boolean empty) {
super.updateItem(item, empty); super.updateItem(item, empty);
setGraphic(empty || item == null ? null : renderItem(item)); if (!(empty || item == null)) {
if (!empty) setCursor(Cursor.HAND); setCursor(Cursor.HAND);
setGraphic(renderItem(item));
}
} }
/** /**