Commit e9a29eb8 authored by davescriven's avatar davescriven
Browse files

- Fixing #8494: Polyline fill being ignored. This appears to have been done on...

- Fixing #8494: Polyline fill being ignored. This appears to have been done on purpose (the Fill property was overridden to return null) but without reason. GIMP, Firefox 3 & Opera 9 all render the fill.
parent a9c72815
...@@ -12,15 +12,6 @@ namespace Svg ...@@ -12,15 +12,6 @@ namespace Svg
/// </summary> /// </summary>
public class SvgPolyline : SvgPolygon public class SvgPolyline : SvgPolygon
{ {
public override SvgPaintServer Fill
{
get { return null; /* Line can't have a fill */ }
set
{
// Do nothing
}
}
public override GraphicsPath Path public override GraphicsPath Path
{ {
get get
......
Supports Markdown
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