Commit f4b63eff authored by claes's avatar claes

Bugfix in rect, index out of bounds

parent 38d70045
...@@ -739,7 +739,7 @@ void GlowExportJBean::rect( double x0, double y0, double width, double height, ...@@ -739,7 +739,7 @@ void GlowExportJBean::rect( double x0, double y0, double width, double height,
" g.draw( shapes[" << base_shape << "]);" << endl; " g.draw( shapes[" << base_shape << "]);" << endl;
else else
fp << fp <<
" g.draw( shapes_p" << page << "[" << *shape_cnt << "]);" << endl; " g.draw( shapes_p" << page << "[" << base_shape << "]);" << endl;
} }
fp << fp <<
" }" << endl; " }" << endl;
......
Markdown is supported
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