Issue with the effect section on mobile devices

This commit is contained in:
2025-10-06 11:27:24 +02:00
parent 871dd6ca39
commit 0110a9760b

View File

@ -180,11 +180,6 @@ function App() {
} }
setFocusedTile({ row, col }) setFocusedTile({ row, col })
if (playing === id) {
handleStop()
return
}
if (isDoubleClick || playing === null) { if (isDoubleClick || playing === null) {
clearSwitchTimer() clearSwitchTimer()
playFormula(tile.formula, id) playFormula(tile.formula, id)
@ -735,6 +730,7 @@ function App() {
</div> </div>
</div> </div>
<div className="flex-shrink-0">
<EffectsBar <EffectsBar
values={effectValues} values={effectValues}
onChange={handleEffectChange} onChange={handleEffectChange}
@ -742,6 +738,7 @@ function App() {
getMappedLFOs={getMappedLFOs} getMappedLFOs={getMappedLFOs}
/> />
</div> </div>
</div>
) )
} }