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:
authorJulian Eisel <julian@blender.org>2020-08-20 21:28:54 +0300
committerJulian Eisel <julian@blender.org>2020-08-20 21:28:54 +0300
commitce0bcd5fbf40b44c515773434bc7187b093fdb53 (patch)
tree8e5fb3dcbd6b9f1f3b85d8587097455ce2d3e26f
parentb077de086e14291fe5f7cdf6d3564a8f1cfb9cb3 (diff)
Fix incorrect notifier value
Wouldn't actually cause an issue since the value was unused within the subtype bits. Own mistake in dc2df8307f41.
-rw-r--r--source/blender/windowmanager/WM_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index e15a808975c..1dc45f58699 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -438,7 +438,7 @@ typedef struct wmNotifier {
/* subtype 3d view editing */
#define NS_VIEW3D_GPU (16 << 8)
-#define NS_VIEW3D_SHADING (16 << 9)
+#define NS_VIEW3D_SHADING (17 << 8)
/* subtype layer editing */
#define NS_LAYER_COLLECTION (24 << 8)