Browse Source

Fixed a typo in a path to Resources on OSX.

bubnikv 7 years ago
parent
commit
ae5863f5e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Slic3r.pm

+ 1 - 1
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;