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-11-27 10:39:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-27 10:43:08 +0300
commit1944bca49a22c18b059d84daf56908b6e15591ad (patch)
tree31241c6c10a0f3c9bdcaa61f54df7bad447efe42 /source/blender/windowmanager/WM_toolsystem.h
parent1f8360171cd80c0c1918486703926709cb5db7aa (diff)
Tool System: use tools for node editor
Diffstat (limited to 'source/blender/windowmanager/WM_toolsystem.h')
-rw-r--r--source/blender/windowmanager/WM_toolsystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/windowmanager/WM_toolsystem.h b/source/blender/windowmanager/WM_toolsystem.h
index 7410bf4ab09..9b056ddcae6 100644
--- a/source/blender/windowmanager/WM_toolsystem.h
+++ b/source/blender/windowmanager/WM_toolsystem.h
@@ -46,9 +46,9 @@ struct WorkSpace;
/* wm_toolsystem.c */
#define WM_TOOLSYSTEM_SPACE_MASK ( \
- (1 << SPACE_VIEW3D) | \
- (1 << SPACE_IMAGE) \
-)
+ (1 << SPACE_IMAGE) | \
+ (1 << SPACE_NODE) | \
+ (1 << SPACE_VIEW3D) )
/* Values that define a categoey of active tool. */
typedef struct bToolKey { int space_type; int mode; } bToolKey;