From 2a3923934ed9fb8932c03818f645ee83e9e55c85 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Thu, 1 May 2014 21:42:12 +0200 Subject: [PATCH] Update timestamp before the Export G-code dialog is shown. #1995 --- lib/Slic3r/Print.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Slic3r/Print.pm b/lib/Slic3r/Print.pm index 44618b083..230c8211d 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -1074,6 +1074,8 @@ sub expanded_output_filepath { # path is a full path to a file so we use it as it is } + # make sure we use an up-to-date timestamp + $self->placeholder_parser->update_timestamp; return $self->placeholder_parser->process($path, $extra); }