corrigindo play/stop do editor de patterns
Deploy / Deploy (push) Successful in 2m9s Details

This commit is contained in:
JotaChina 2025-12-27 09:46:14 -03:00
parent f8de93a9f3
commit e24b188d8d
1 changed files with 2 additions and 0 deletions

View File

@ -433,6 +433,7 @@ document.addEventListener("DOMContentLoaded", () => {
if (appState.global.isPlaying && affectsTimeline && event.isTrusted) {
sendAction({ type: "STOP_PLAYBACK" });
}
});
input.addEventListener("change", (event) => {
const target = event.target;
@ -462,6 +463,7 @@ document.addEventListener("DOMContentLoaded", () => {
adjustValue(event.target, step);
event.target.dispatchEvent(new Event("change", { bubbles: true }));
});
});
const buttons = document.querySelectorAll(".adjust-btn");
buttons.forEach((button) => {