Skip to content

Commit

Permalink
fixed error with dialog window and array colors
Browse files Browse the repository at this point in the history
  • Loading branch information
bhofmei committed Jun 21, 2017
1 parent f7014cf commit be6c790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/View/Dialog/NucleotideDensityDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function(
if(thisB.colorType === 'individual' && thisB.colors.hasOwnProperty(ctx))
return thisB.colors[ctx];
else
return ColorHandler.contextToColorFromList(ctx, thisB.contexts, thisB.randomColors, false);
return ColorHandler.contextToColorFromList(ctx, thisB.contexts, thisB.colors, false);
});

this.setCallback = args.setCallback || function() {};
Expand Down

0 comments on commit be6c790

Please sign in to comment.