Fixed a typo in a path to Resources on OSX.
This commit is contained in:
parent
679aa2822c
commit
ae5863f5e0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue