(Source List) RegionFactory should return an empty region here.
[ardour.git] / libs / canvas / framed_curve.cc
index d8ba2e92c0b7f085d584bd9e92282c411f1add1c..66145f718323b691c856e2e39dc9f31fc249c6fe 100644 (file)
@@ -102,10 +102,10 @@ FramedCurve::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) c
                return;
        }
 
-       Rect self = item_to_window (_bounding_box.get());
-       boost::optional<Rect> d = self.intersection (area);
+       Rect self = item_to_window (_bounding_box);
+       Rect d = self.intersection (area);
        assert (d);
-       Rect draw = d.get ();
+       Rect draw = d;
 
        /* Our approach is to always draw n_segments across our total size.
         *