Skip to content

Commit

Permalink
Add more paths
Browse files Browse the repository at this point in the history
  • Loading branch information
casperlamboo committed Feb 4, 2024
1 parent 8dba775 commit 7cb1c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UM/Application.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def getAppFolderPrefix() -> str:
else:
executable = sys.executable
try:
return os.path.dirname(os.path.realpath(executable))
return os.path.join(os.path.dirname(os.path.realpath(executable)), "..", "Resources")
except EnvironmentError: # Symlinks can't be dereferenced.
return os.path.dirname(executable)

Expand Down

0 comments on commit 7cb1c03

Please sign in to comment.