You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: Jose Pereda (Bitbucket: JPereda, GitHub: JPereda)
Custom control properties are scanned and the proper editor for each of them is added to the Inspector panel's custom tab.
In case a of a property of type Font, this doesn't happen, because the Font class is not taken into account by MetadataInstrospector::makePropertyMetadata.
This will solve the issue:
#!java
} else if (propertyType == javafx.scene.text.Font.class) {
result = new FontPropertyMetadata(
name,
readWrite,
(Font) getDefaultValue(sample, propertyDescriptor.getReadMethod(), null),
inspectorPath);
}...
Originally reported by: Jose Pereda (Bitbucket: JPereda, GitHub: JPereda)
Custom control properties are scanned and the proper editor for each of them is added to the Inspector panel's custom tab.
In case a of a property of type
Font
, this doesn't happen, because the Font class is not taken into account byMetadataInstrospector::makePropertyMetadata
.This will solve the issue:
The text was updated successfully, but these errors were encountered: