Open the settings dialog instead of the cut dialog when user double clicks on objects in plater

This commit is contained in:
Alessandro Ranellucci 2014-11-30 20:19:04 +01:00
parent e8f242ee3f
commit 80adf9e5d0

View file

@ -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) = @_;