Skip to content
Snippets Groups Projects
Commit e4997e69 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

width of data overlay elemnt wasn't returned from api

parent a8b5ce5a
No related branches found
No related tags found
5 merge requests!488Merge 12.1.1 into master,!48712.1.1 into master,!484v12.1.1 release,!479Resolve "Pathways and compartments overlay is unavailable if using Custom Semantic Zoom",!475Resolve "lineWidth is ignored"
Pipeline #7176 passed
......@@ -87,7 +87,7 @@ ReactionSurface.prototype.setColor = function (color) {
strokeColor: color
});
}
this.customized = true;
this.setCustomized(true);
};
/**
......@@ -163,7 +163,7 @@ ReactionSurface.prototype.changedToDefault = function () {
strokeWeight: 5
});
}
this.customized = false;
this.setCustomized(false);
};
/**
......@@ -177,7 +177,7 @@ ReactionSurface.prototype.changedToCustomized = function () {
strokeWeight: this.getWidth()
});
}
this.customized = true;
this.setCustomized(true);
};
/**
......
......@@ -143,7 +143,7 @@ public class OverlayRestImpl extends BaseRestImpl {
if (columns != null && !columns.trim().isEmpty()) {
columnSet = columns.split(",");
} else {
columnSet = new String[] { "modelId", "idObject", "value", "color", "uniqueId" };
columnSet = new String[] { "modelId", "idObject", "value", "color", "uniqueId", "width" };
}
List<Map<String, Object>> result = new ArrayList<>();
......@@ -426,6 +426,12 @@ public class OverlayRestImpl extends BaseRestImpl {
}
} else if (column.equals("description")) {
value = colorSchema.getDescription();
} else if (column.equals("width")) {
if (bioEntity instanceof Reaction) {
value = colorSchema.getLineWidth();
} else {
continue;
}
} else if (column.equals("type")) {
if (colorSchema instanceof GeneVariationColorSchema) {
value = ColorSchemaType.GENETIC_VARIANT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment