diff --git a/src/js/tabs/auxiliary.js b/src/js/tabs/auxiliary.js index 94b3c64f57..34ef6085cf 100644 --- a/src/js/tabs/auxiliary.js +++ b/src/js/tabs/auxiliary.js @@ -680,7 +680,7 @@ auxiliary.initialize = function (callback) { if ( ! isSelectedMode(modeList, FC.AUX_CONFIG[i])) { modeElement.toggle( false); } - else if ( ! isSelectedMode(modeList, FC.AUX_CONFIG[i]) && modeElement.find(' .range').length == 0 && modeElement.find(' .link').length == 0) { + else if ( modeElement.find(' .range').length == 0 && modeElement.find(' .link').length == 0) { // unused mode modeElement.toggle(!hideUnused); } @@ -724,7 +724,7 @@ auxiliary.initialize = function (callback) { return (x > y) ? x : y; }, 0); - // minimum change to autoselect is 100 + //minimum change to autoselect is 100 if (largest < 100) return fillPrevChannelsValues(); const indexOfMaxValue = diff_array.indexOf(largest);