Reverted Print::export_png() for the Perl unit tests.

This commit is contained in:
bubnikv
2018-10-24 13:59:24 +02:00
parent bf3af6adea
commit 4bf5235b31

View File

@@ -185,6 +185,14 @@ _constant()
}
%};
void export_gcode(char *path_template) %code%{
try {
THIS->export_gcode(path_template, nullptr);
} catch (std::exception& e) {
croak(e.what());
}
%};
void export_png(char *path) %code%{
try {
THIS->export_png(path);