From 426e79c65411cdb789da3d2f8190354dee1a9a64 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 26 Mar 2017 15:00:39 +0200 Subject: [PATCH] Use shift key instead of alt for the OctoPrint shortcut. #3789 --- 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 d43f1cf52..55e331f38 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -256,7 +256,7 @@ sub new { EVT_LEFT_UP($self->{btn_send_gcode}, sub { my (undef, $e) = @_; - my $alt = $e->AltDown; + my $alt = $e->ShiftDown; wxTheApp->CallAfter(sub { $self->prepare_send($alt); });