Use shift key instead of alt for the OctoPrint shortcut. #3789

This commit is contained in:
Alessandro Ranellucci 2017-03-26 15:00:39 +02:00
parent 5f30ab2f0d
commit 426e79c654

View File

@ -256,7 +256,7 @@ sub new {
EVT_LEFT_UP($self->{btn_send_gcode}, sub { EVT_LEFT_UP($self->{btn_send_gcode}, sub {
my (undef, $e) = @_; my (undef, $e) = @_;
my $alt = $e->AltDown; my $alt = $e->ShiftDown;
wxTheApp->CallAfter(sub { wxTheApp->CallAfter(sub {
$self->prepare_send($alt); $self->prepare_send($alt);
}); });