From ce0bcd5fbf40b44c515773434bc7187b093fdb53 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 20 Aug 2020 20:28:54 +0200 Subject: Fix incorrect notifier value Wouldn't actually cause an issue since the value was unused within the subtype bits. Own mistake in dc2df8307f41. --- source/blender/windowmanager/WM_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/windowmanager') 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) -- cgit v1.2.3