Merge branch 'blender-v2.93-release'

This commit is contained in:
Brecht Van Lommel 2021-05-31 19:23:49 +02:00
commit 09fb81f66d
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class PREFERENCES_OT_copy_prev(Operator):
def execute(self, _context):
import shutil
shutil.copytree(self._old_path(), self._new_path(), dirs_exist_ok=True)
shutil.copytree(self._old_path(), self._new_path(), dirs_exist_ok=True, symlinks=True)
# reload preferences and recent-files.txt
bpy.ops.wm.read_userpref()