Fix swing parsing

This commit is contained in:
mtkennerly 2019-07-27 21:16:05 -04:00
parent 716982f579
commit 5547d67208

@ -494,7 +494,7 @@ class MetaWorkspace extends React.Component<{ activeChannel: number, activePatte
value={song.meta.swing}
// @ts-ignore
onChange={e => {
const value = parseInt(e.currentTarget.value);
const value = parseFloat(e.currentTarget.value);
if (isNaN(value)) {
return;
}