add missing javafx getter in resultListCell

This commit is contained in:
Armin Schrenk
2022-12-06 15:44:02 +01:00
parent 1b9480293a
commit e188169916

View File

@@ -182,6 +182,10 @@ public class ResultListCellController implements FxController {
return fixGlyph;
}
public FontAwesome5Icon getFixGlyph() {
return fixGlyph.getValue();
}
public BooleanBinding fixableProperty() {
return fixable;
}