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,12 +730,14 @@ function App() {
</div> </div>
</div> </div>
<EffectsBar <div className="flex-shrink-0">
values={effectValues} <EffectsBar
onChange={handleEffectChange} values={effectValues}
onMapClick={handleParameterMapClick} onChange={handleEffectChange}
getMappedLFOs={getMappedLFOs} onMapClick={handleParameterMapClick}
/> getMappedLFOs={getMappedLFOs}
/>
</div>
</div> </div>
) )
} }