Fixed "upscaled objects cannot be cut above original height"
https://github.com/prusa3d/Slic3r/issues/419
This commit is contained in:
parent
3a813aaef6
commit
c9325338a8
@ -12,10 +12,8 @@ use Wx::Event qw(EVT_CLOSE EVT_BUTTON);
|
|||||||
use base 'Wx::Dialog';
|
use base 'Wx::Dialog';
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
my $class = shift;
|
my ($class, $parent, %params) = @_;
|
||||||
my ($parent, %params) = @_;
|
|
||||||
my $self = $class->SUPER::new($parent, -1, $params{object}->name, wxDefaultPosition, [500,500], wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER);
|
my $self = $class->SUPER::new($parent, -1, $params{object}->name, wxDefaultPosition, [500,500], wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER);
|
||||||
$self->{model_object_idx} = $params{model_object_idx};
|
|
||||||
$self->{model_object} = $params{model_object};
|
$self->{model_object} = $params{model_object};
|
||||||
$self->{new_model_objects} = [];
|
$self->{new_model_objects} = [];
|
||||||
# Mark whether the mesh cut is valid.
|
# Mark whether the mesh cut is valid.
|
||||||
@ -62,7 +60,7 @@ sub new {
|
|||||||
label => 'Z',
|
label => 'Z',
|
||||||
default => $self->{cut_options}{z},
|
default => $self->{cut_options}{z},
|
||||||
min => 0,
|
min => 0,
|
||||||
max => $self->{model_object}->bounding_box->size->z,
|
max => $self->{model_object}->bounding_box->size->z * $self->{model_object}->instances->[0]->scaling_factor,
|
||||||
full_width => 1,
|
full_width => 1,
|
||||||
));
|
));
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user