From 933d5b261aa97d4ab530bcdefbe726526c7c118c Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 1 Aug 2017 14:42:59 +0200 Subject: [PATCH] Fix of a "Scale to Size" dialog, where a bed size is shown scaled. --- lib/Slic3r/GUI/Plater.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm index 6e06687d4..c473688c2 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -1101,7 +1101,7 @@ sub changescale { if ($tosize) { my $cursize = $object_size->[$axis]; my $newsize = $self->_get_number_from_user( - sprintf('Enter the new size for the selected object (print bed: %smm):', $bed_size->[$axis]), + sprintf('Enter the new size for the selected object (print bed: %smm):', unscale($bed_size->[$axis])), "Scale along $axis_name", 'Invalid scaling value entered', $cursize, 1); return if $newsize eq ''; $scale = $newsize / $cursize * 100;