From 80adf9e5d0445f18640ba92792173394624087a5 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 30 Nov 2014 20:19:04 +0100 Subject: [PATCH] Open the settings dialog instead of the cut dialog when user double clicks on objects in plater --- 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 49b5a62a08..c3f5d483e2 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -76,7 +76,7 @@ sub new { $self->select_object($obj_idx); }); $self->{canvas}->on_double_click(sub { - $self->object_cut_dialog if $self->selected_object; + $self->object_settings_dialog if $self->selected_object; }); $self->{canvas}->on_right_click(sub { my ($click_pos) = @_;