Fix shadow filter causing empty circle to be completely hidden.

master
Icedream 2017-08-20 04:04:28 +02:00
parent 591a513511
commit 9350b048ea
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ const ProgressCircle = ({
<feGaussianBlur in="SourceAlpha" stdDeviation="5" /> {/* stdDeviation is how much to blur */} <feGaussianBlur in="SourceAlpha" stdDeviation="5" /> {/* stdDeviation is how much to blur */}
<feOffset dx="0" dy="0" result="offsetblur" /> {/* how much to offset */} <feOffset dx="0" dy="0" result="offsetblur" /> {/* how much to offset */}
<feMerge> <feMerge>
<feMergeNode in="offsetBlur" /> <feMergeNode />
<feMergeNode in="SourceGraphic" /> {/* this contains the element that the filter is applied to */} <feMergeNode in="SourceGraphic" /> {/* this contains the element that the filter is applied to */}
</feMerge> </feMerge>
</filter> </filter>