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-11 01:27:22 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-11 01:27:22 +0300
commitae5863f5e043a92188377c4673b4efd87ca09976 (patch)
treeb81bfd253da11d3af02ac274607c967d7ca5921d /lib
parent679aa2822c71e77624e68e83305fe8638b062a39 (diff)
Fixed a typo in a path to Resources on OSX.
Diffstat (limited to 'lib')
-rw-r--r--lib/Slic3r.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Slic3r.pm b/lib/Slic3r.pm
index 68579af81..22a6ee389 100644
--- a/lib/Slic3r.pm
+++ b/lib/Slic3r.pm
@@ -41,7 +41,7 @@ warn "Running Slic3r under Perl 5.16 is neither supported nor recommended\n"
use FindBin;
# Let the XS module know where the GUI resources reside.
-set_resources_dir(decode_path($FindBin::Bin) . (($^O eq 'darwin') ? '../Resources' : '/resources'));
+set_resources_dir(decode_path($FindBin::Bin) . (($^O eq 'darwin') ? '/../Resources' : '/resources'));
set_var_dir(resources_dir() . "/icons");
use Moo 1.003001;