dotnetprojects / SVGImage

A SVGImage Control for WPF
http://dotnetprojects.github.io/SVGImage/
MIT License
199 stars 41 forks source link

changed code to not convert double to int #57

Closed avantBentlyNevada closed 2 years ago

avantBentlyNevada commented 2 years ago

Found and fixed issue where the stroke-dasharray was not being displayed. This was due to a variable of type double being converted to int. The fix was to simply keep persist the double data type. Below are before and after examples.

Before Fix image

After Fix image

jogibear9988 commented 2 years ago

thanks