Skip to content

Commit

Permalink
Merge pull request #3659 from gege2b/OctoprintUI
Browse files Browse the repository at this point in the history
Fix for #3655 - always print after gcode send
  • Loading branch information
alranel committed Jan 11, 2017
2 parents 182d68a + f4bf6fe commit 8838763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Slic3r/GUI/Plater.pm
Expand Up @@ -1399,7 +1399,7 @@ sub send_gcode {
# OctoPrint doesn't like Windows paths so we use basename()
# Also, since we need to read from filesystem we process it through encode_path()
file => [ $path, basename($path) ],
print => $self->{send_gcode_file} ? 1 : 0,
print => $self->{send_gcode_file_print} ? 1 : 0,
],
);

Expand Down

0 comments on commit 8838763

Please sign in to comment.