mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 20:51:23 -07:00
Open the settings dialog instead of the cut dialog when user double clicks on objects in plater
This commit is contained in:
parent
e8f242ee3f
commit
80adf9e5d0
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ sub new {
|
||||||
$self->select_object($obj_idx);
|
$self->select_object($obj_idx);
|
||||||
});
|
});
|
||||||
$self->{canvas}->on_double_click(sub {
|
$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 {
|
$self->{canvas}->on_right_click(sub {
|
||||||
my ($click_pos) = @_;
|
my ($click_pos) = @_;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue