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:
authorCampbell Barton <ideasman42@gmail.com>2018-10-03 08:48:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-03 08:55:57 +0300
commit1c3411ac899d1ae8dfd790249a53054698bdd1e8 (patch)
tree56251e61463f2927574d335870a90b7f14f4c0e1 /release/scripts/modules/bl_i18n_utils
parente44dfbbba5456d2479afd95faec325e069942f0a (diff)
Keymap: expose tool keymaps in the preferences
Currently some modes share tool keymaps, we might want to disable this since it's confusing editing one thing in multiple places. However this should be resolved in the tool definitions.
Diffstat (limited to 'release/scripts/modules/bl_i18n_utils')
-rw-r--r--release/scripts/modules/bl_i18n_utils/bl_extract_messages.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/modules/bl_i18n_utils/bl_extract_messages.py b/release/scripts/modules/bl_i18n_utils/bl_extract_messages.py
index db46bf0736a..fada1255e8b 100644
--- a/release/scripts/modules/bl_i18n_utils/bl_extract_messages.py
+++ b/release/scripts/modules/bl_i18n_utils/bl_extract_messages.py
@@ -437,8 +437,8 @@ def dump_rna_messages(msgs, reports, settings, verbose=False):
reports, check_ctxt_rna, settings)
# And parse keymaps!
- from bpy_extras.keyconfig_utils import KM_HIERARCHY
- walk_keymap_hierarchy(KM_HIERARCHY, "KM_HIERARCHY")
+ from bpy_extras.keyconfig_utils import km_hierarchy
+ walk_keymap_hierarchy(km_hierarchy(), "KM_HIERARCHY")
##### Python source code #####