Commit dbcf42a4 authored by StyleZhang's avatar StyleZhang

fix voice input in safari

parent a93506df
...@@ -56,7 +56,10 @@ const VoiceInput = ({ ...@@ -56,7 +56,10 @@ const VoiceInput = ({
const y = (v - 128) / 50 * canvas.height const y = (v - 128) / 50 * canvas.height
ctx.moveTo(x, 16) ctx.moveTo(x, 16)
ctx.roundRect(x, 16 - y, 2, y, [1, 1, 0, 0]) if (ctx.roundRect)
ctx.roundRect(x, 16 - y, 2, y, [1, 1, 0, 0])
else
ctx.rect(x, 16 - y, 2, y)
ctx.fill() ctx.fill()
x += 3 x += 3
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment