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-06-03 10:52:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-03 10:55:56 +0300
commit3041705c5188493e66ca25b597f2b15a1b32c0ca (patch)
tree6eb771880cc81fc6fca9dbc836ab7ce21035150d /source/blender/windowmanager/gizmo
parent4fbc71a320dc55f986e64823656ec6bcb34f18f3 (diff)
Fix T65294: Orbit navigate gizmo fails in paint modes
Diffstat (limited to 'source/blender/windowmanager/gizmo')
-rw-r--r--source/blender/windowmanager/gizmo/WM_gizmo_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/windowmanager/gizmo/WM_gizmo_types.h b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
index cd8bcc6696b..7afd2908b8e 100644
--- a/source/blender/windowmanager/gizmo/WM_gizmo_types.h
+++ b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
@@ -85,6 +85,10 @@ typedef enum eWM_GizmoFlag {
/** Use the active tools operator properties when running as an operator. */
WM_GIZMO_OPERATOR_TOOL_INIT = (1 << 9),
+
+ /** Don't pass through events to other handlers
+ * (allows click/drag not to have it's events stolen by press events in other keymaps). */
+ WM_GIZMO_EVENT_HANDLE_ALL = (1 << 10),
} eWM_GizmoFlag;
/**