Skip to content

Commit 59bd031

Browse files
committed
Fix #2568
1 parent 4d901f1 commit 59bd031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/AppearanceAPI/src/main/java/org/gephi/appearance/AttributePartitionImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public Class getValueType() {
111111
public boolean isValid(Graph graph) {
112112
Column col = column.get();
113113
if (col != null && col.getIndex() != -1) {
114-
return !col.isNumber() || getIndex(graph.getModel().getGraph()).countValues(col) > 1;
114+
return true;
115115
}
116116
return false;
117117
}

0 commit comments

Comments
 (0)