From dccdc5df10fe357d8026afdcff43fcac82a9231d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 7 Oct 2019 19:41:05 +0200 Subject: [PATCH] Fix T69933: Blender 2.81 doesn't import 2.80 preferences from quick setup screen --- release/scripts/startup/bl_operators/userpref.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release/scripts/startup/bl_operators/userpref.py b/release/scripts/startup/bl_operators/userpref.py index b052f333d2a..0cd90610cdc 100644 --- a/release/scripts/startup/bl_operators/userpref.py +++ b/release/scripts/startup/bl_operators/userpref.py @@ -114,7 +114,8 @@ class PREFERENCES_OT_copy_prev(Operator): shutil.copytree(self._old_path(), self._new_path(), symlinks=True) - # reload recent-files.txt + # reload preferences and recent-files.txt + bpy.ops.wm.read_userpref() bpy.ops.wm.read_history() # don't loose users work if they open the splash later.