-rw-r--r-- | agg-plot/plot-auto.h | 6 |
diff --git a/agg-plot/plot-auto.h b/agg-plot/plot-auto.h index 027c0975..17b83c1c 100644 --- a/agg-plot/plot-auto.h +++ b/agg-plot/plot-auto.h @@ -41,7 +41,11 @@ public: virtual ~plot_auto() { }; virtual void add(VertexSource* vs, agg::rgba8& color, bool outline); - virtual void before_draw() { check_bounding_box(); }; + virtual void before_draw() + { + plot<VertexSource, resource_manager>::before_draw(); + check_bounding_box(); + }; virtual bool pop_layer(); |