Skip to content

Commit f3017ff

Browse files
committed
unused get to work
1 parent 320ea2d commit f3017ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/tabs/auxiliary.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ auxiliary.initialize = function (callback) {
680680
if ( ! isSelectedMode(modeList, FC.AUX_CONFIG[i])) {
681681
modeElement.toggle( false);
682682
}
683-
else if ( ! isSelectedMode(modeList, FC.AUX_CONFIG[i]) && modeElement.find(' .range').length == 0 && modeElement.find(' .link').length == 0) {
683+
else if ( modeElement.find(' .range').length == 0 && modeElement.find(' .link').length == 0) {
684684
// unused mode
685685
modeElement.toggle(!hideUnused);
686686
}
@@ -724,7 +724,7 @@ auxiliary.initialize = function (callback) {
724724
return (x > y) ? x : y;
725725
}, 0);
726726

727-
// minimum change to autoselect is 100
727+
//minimum change to autoselect is 100
728728
if (largest < 100) return fillPrevChannelsValues();
729729

730730
const indexOfMaxValue = diff_array.indexOf(largest);

0 commit comments

Comments
 (0)