mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-05 15:40:37 +08:00
Don't select objects when the shift button pressed. This allows for easier rotating when zoomed in.
This commit is contained in:
parent
d7edc08287
commit
8738d7f5e7
@ -148,7 +148,7 @@ sub mouse_event {
|
||||
} elsif ($e->LeftDClick) {
|
||||
$self->on_double_click->()
|
||||
if $self->on_double_click;
|
||||
} elsif ($e->LeftDown || $e->RightDown) {
|
||||
} elsif (($e->LeftDown || $e->RightDown) && not $e->ShiftDown) {
|
||||
# If user pressed left or right button we first check whether this happened
|
||||
# on a volume or not.
|
||||
my $volume_idx = $self->_hover_volume_idx // -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user