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
1 changed files with 2 additions and 2 deletions

View File

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