Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-12-21 22:11:19 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-21 22:11:19 +0300
commit48ba7e5f73d07725ca49585f33fa86893a905448 (patch)
tree879f62e6c451a3122939978d4c29401b81c9ff11 /lib
parente71b021b6e7c4d90bf1824d73935a8bc04f1e6e4 (diff)
Removed dependency on Perl Encode::encode_utf8.
Diffstat (limited to 'lib')
-rw-r--r--lib/Slic3r/GUI/Plater.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm
index f05ea86bf..eb3aac0e2 100644
--- a/lib/Slic3r/GUI/Plater.pm
+++ b/lib/Slic3r/GUI/Plater.pm
@@ -1470,7 +1470,7 @@ sub send_gcode {
Slic3r::encode_path($self->{send_gcode_file}),
# Remove the UTF-8 flag from the perl string, so the LWP::UserAgent can insert
# the UTF-8 encoded string into the request as a byte stream.
- Encode::encode_utf8(Slic3r::path_to_filename($self->{send_gcode_file}))
+ Slic3r::path_to_filename_raw($self->{send_gcode_file})
],
print => $self->{send_gcode_file_print} ? 1 : 0,
],