You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current impl. of the class SvgElement supports setStroke(...) methods, that use an int to transport the stroke width.
We have to create e.g. a Ellipse that has a stroke width of 0.000817993d. Integer is the wrong type here, and I think for the most svg elements.
Expected: we can specify a double as stroke width, so maybe add overload(s) would be ok.
The text was updated successfully, but these errors were encountered:
Using Svg version 1.2.1 with vaadin 24.4.2
The current impl. of the class
SvgElement
supportssetStroke(...)
methods, that use anint
to transport the stroke width.We have to create e.g. a
Ellipse
that has a stroke width of0.000817993d
. Integer is the wrong type here, and I think for the most svg elements.Expected: we can specify a double as stroke width, so maybe add overload(s) would be ok.
The text was updated successfully, but these errors were encountered: