Skip to content
Snippets Groups Projects
Commit 1f892ff9 authored by Campbell Barton's avatar Campbell Barton Committed by Philipp Oeser
Browse files

Fix #83819: Toolbar tooltip missing with custom-keymap

When accessing the key-map for tooltips it's important to use
the final "user" keymap, combine from "active" & "default".

Using the active keyconfig would only keys from key-maps that had
been modified.
parent 5fc636c6
Branches
Tags
No related merge requests found
...@@ -1222,7 +1222,7 @@ def keymap_from_id(context, space_type, idname): ...@@ -1222,7 +1222,7 @@ def keymap_from_id(context, space_type, idname):
def _keymap_from_item(context, item): def _keymap_from_item(context, item):
if item.keymap is not None: if item.keymap is not None:
wm = context.window_manager wm = context.window_manager
keyconf = wm.keyconfigs.active keyconf = wm.keyconfigs.user
return keyconf.keymaps.get(item.keymap[0]) return keyconf.keymaps.get(item.keymap[0])
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment