We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058e23d commit a6e669aCopy full SHA for a6e669a
1 file changed
src/main/java/org/gephi/graph/impl/Serialization.java
@@ -811,7 +811,7 @@ private EdgePropertiesImpl deserializeEdgeProperties(final DataInput is) throws
811
812
// Gephi versions before 0.11 used zero alpha to indicate that the element has no color
813
// Override this to avoid hidden elements
814
- if (props.alpha() == 0f) {
+ if (props.alpha() <= 0f) {
815
props.setAlpha(1f);
816
}
817
@@ -845,7 +845,7 @@ private TextPropertiesImpl deserializeTextProperties(final DataInput is) throws
845
846
847
848
- if (props.getAlpha() == 0f) {
+ if (props.getAlpha() <= 0f) {
849
850
851
0 commit comments