Skip to content

Commit

Permalink
Merge pull request #192 from ElDeveloper/fix-circular-bug
Browse files Browse the repository at this point in the history
BUG: Problem updating color in circular layout
  • Loading branch information
kwcantrell authored Jun 22, 2020
2 parents 1168b79 + 4b49aa1 commit b5c7874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion empress/support_files/js/side-panel-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ define(["underscore", "Colorer"], function (_, Colorer) {
// color tree
this[colorMethodName]();

var lWidth = lwInput.value;
var lWidth = parseInt(lwInput.value);
if (lWidth !== 1) {
this.empress.thickenSameSampleLines(lWidth - 1);
}
Expand Down

0 comments on commit b5c7874

Please sign in to comment.