mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 04:05:57 +08:00
Dereference the Wx object id when removing an object in the plater.
This commit is contained in:
parent
0833b4e021
commit
4979029cd2
@ -323,7 +323,9 @@ sub object_loaded {
|
|||||||
|
|
||||||
sub remove {
|
sub remove {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my ($obj_idx) = @_;
|
my ($obj) = @_;
|
||||||
|
|
||||||
|
my $obj_idx = $obj->GetInt();
|
||||||
|
|
||||||
if (defined $obj_idx) {
|
if (defined $obj_idx) {
|
||||||
$self->{print}->copies->[$obj_idx][$_] = undef
|
$self->{print}->copies->[$obj_idx][$_] = undef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user