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

empty data overlay doesn't have glyph

parent ec7dad53
No related branches found
No related tags found
2 merge requests!805Merge 13.1.0 beta.1,!803empty data overlay doesn't have glyph
Pipeline #10550 canceled
...@@ -29,6 +29,8 @@ minerva (12.3.1~beta.1) unstable; urgency=low ...@@ -29,6 +29,8 @@ minerva (12.3.1~beta.1) unstable; urgency=low
* Bug fix: empty type for data overlay is allowed (#827) * Bug fix: empty type for data overlay is allowed (#827)
* Bug fix: genetic variants data overlay was ignoring color parameter (#827) * Bug fix: genetic variants data overlay was ignoring color parameter (#827)
* Bug fix: pathways can be drawn using glyphs (#825) * Bug fix: pathways can be drawn using glyphs (#825)
* Bug fix: empty background overlay doesn't show glyphs, instead standard
visualization is used (#826)
minerva (13.1.0~beta.0) unstable; urgency=low minerva (13.1.0~beta.0) unstable; urgency=low
* Feature: annotators are more flexible - you can define set of input and * Feature: annotators are more flexible - you can define set of input and
......
...@@ -337,6 +337,7 @@ public class ColorModelCommand extends ModelCommand { ...@@ -337,6 +337,7 @@ public class ColorModelCommand extends ModelCommand {
for (Element element : result.getElements()) { for (Element element : result.getElements()) {
element.setColor(Color.WHITE); element.setColor(Color.WHITE);
element.setGlyph(null);
} }
for (Reaction reaction : result.getReactions()) { for (Reaction reaction : result.getReactions()) {
for (AbstractNode node : reaction.getNodes()) { for (AbstractNode node : reaction.getNodes()) {
......
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