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>2019-12-20 03:08:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-20 03:09:55 +0300
commitc3782ebf44d81b39629fcf06f91363080aab08a1 (patch)
treede26fc0907bec5d134212c512f2bed19ca997870 /source/blender/windowmanager/WM_api.h
parent110f1cb1d6ac4a56aa48ab58712df1ff1d4b201a (diff)
Fix IC-keymap doesn't allow MMB to run the active tool
Now the keymap can be configured so both the fallback and active tool can be activated at once - when configured not to conflict.
Diffstat (limited to 'source/blender/windowmanager/WM_api.h')
-rw-r--r--source/blender/windowmanager/WM_api.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h
index 72ccbb0fb55..d24157a22a6 100644
--- a/source/blender/windowmanager/WM_api.h
+++ b/source/blender/windowmanager/WM_api.h
@@ -228,6 +228,8 @@ struct wmEventHandler_Keymap *WM_event_add_keymap_handler_priority(ListBase *han
typedef struct wmKeyMap *(wmEventHandler_KeymapDynamicFn)(
wmWindowManager *wm, struct wmEventHandler_Keymap *handler)ATTR_WARN_UNUSED_RESULT;
+struct wmKeyMap *WM_event_get_keymap_from_toolsystem_fallback(
+ struct wmWindowManager *wm, struct wmEventHandler_Keymap *handler);
struct wmKeyMap *WM_event_get_keymap_from_toolsystem(struct wmWindowManager *wm,
struct wmEventHandler_Keymap *handler);