tweak Polygon::render() to work whether or not fill or outline are unset
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 7 Mar 2014 04:15:59 +0000 (23:15 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 7 Mar 2014 04:15:59 +0000 (23:15 -0500)
libs/canvas/polygon.cc

index 2e818236160d77335aec155aae1245d3de4a2a6c..9352e900e9ab91ea36b017e67c4e81d5f5653913 100644 (file)
@@ -41,8 +41,7 @@ Polygon::~Polygon ()
 void
 Polygon::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 {
-       if (_outline) {
-               setup_outline_context (context);
+       if (_outline || _fill) {
                render_path (area, context);
                
                if (!_points.empty ()) {
@@ -51,7 +50,15 @@ Polygon::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
                        context->move_to (p.x, p.y);
                }
 
-               context->stroke_preserve ();
+       }
+
+       if (_outline) {
+               setup_outline_context (context);
+               if (_fill) {
+                       context->stroke_preserve ();
+               } else {
+                       context->stroke ();
+               }
        }
 
        if (_fill) {