The AppState class has a method called setProperty:
|
public static void setProperty(Dockable dockable, String propertyName, String value) { |
|
instance.setProperty(dockable, propertyName, new Property.StringProperty(propertyName, value)); |
|
} |
Could you add an overload that accepts a Property object, so different types of properties are supported?
The AppState class has a method called
setProperty:ModernDocking/docking-single-app/src/io/github/andrewauclair/moderndocking/app/AppState.java
Lines 145 to 147 in b3c0507
Could you add an overload that accepts a
Propertyobject, so different types of properties are supported?