Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_operators/wm.py')
-rw-r--r--release/scripts/startup/bl_operators/wm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index dc1bbb4467c..7177f35f877 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -1650,9 +1650,9 @@ class WM_MT_splash(Menu):
row = layout.row()
sub = row.row()
- if bpy.types.WM_OT_copy_prev_settings.poll(context):
- old_version = bpy.types.WM_OT_copy_prev_settings.previous_version()
- sub.operator("wm.copy_prev_settings", text="Load %d.%d Settings" % old_version)
+ if bpy.types.PREFERENCES_OT_copy_prev.poll(context):
+ old_version = bpy.types.PREFERENCES_OT_copy_prev.previous_version()
+ sub.operator("preferences.copy_prev", text="Load %d.%d Settings" % old_version)
sub.operator("wm.save_userpref", text="Save New Settings")
else:
sub.label()