Rename operator property from last commit

Restore operator had same option named differently.
This commit is contained in:
Campbell Barton
2018-07-14 10:19:53 +02:00
parent 50e3cd0bb3
commit ceba8e28b7

View File

@@ -1629,7 +1629,7 @@ class WM_OT_keyconfig_export(Operator):
bl_idname = "wm.keyconfig_export" bl_idname = "wm.keyconfig_export"
bl_label = "Export Key Configuration..." bl_label = "Export Key Configuration..."
all_keymaps = BoolProperty( all = BoolProperty(
name="All Keymaps", name="All Keymaps",
default=False, default=False,
description="Write all keymaps (not just user modified)", description="Write all keymaps (not just user modified)",
@@ -1669,7 +1669,7 @@ class WM_OT_keyconfig_export(Operator):
wm, wm,
wm.keyconfigs.active, wm.keyconfigs.active,
self.filepath, self.filepath,
all_keymaps=self.all_keymaps, all_keymaps=self.all,
) )
return {'FINISHED'} return {'FINISHED'}