We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8117c7f commit 627d358Copy full SHA for 627d358
js/widgets/temperament.js
@@ -2097,6 +2097,9 @@ function TemperamentWidget() {
2097
if ((this._playing && currentTime - this.lastClickTime > Singer.defaultBPMFactor * 1000 * duration) || (this.inbetween)) {
2098
that.playbackForward = true;
2099
this.inbetween = false;
2100
+ for (let i = 0; i <= this.pitchNumber; i++) {
2101
+ docById("pitchNumber_" + i).style.background = platformColor.selectorBackground;
2102
+ }
2103
__playLoop(0);
2104
}
2105
this.lastClickTime = currentTime;
0 commit comments