From ebf17d14f046ffed8a1605d2f6d13934824c33f6 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Wed, 14 Jan 2015 23:21:54 +0100 Subject: [PATCH] Open the Object Settings dialog when double clicking an item in the list instead of the cut dialog --- 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 3a280e6b9..6f9f9f2e0 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -1342,7 +1342,7 @@ sub list_item_activated { my ($self, $event, $obj_idx) = @_; $obj_idx //= $event->GetIndex; - $self->object_cut_dialog($obj_idx); + $self->object_settings_dialog($obj_idx); } sub object_cut_dialog {