[Bf-blender-cvs] [84eaaad94c5] master: Fix wrong XR notifier bit value

Julian Eisel noreply at git.blender.org
Tue May 5 22:57:55 CEST 2020


Commit: 84eaaad94c5201377ece1d9baf9b4570748e1270
Author: Julian Eisel
Date:   Tue May 5 22:53:18 2020 +0200
Branches: master
https://developer.blender.org/rB84eaaad94c5201377ece1d9baf9b4570748e1270

Fix wrong XR notifier bit value

===================================================================

M	source/blender/windowmanager/WM_types.h

===================================================================

diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index c7d1c4992e3..7ce34dd1af4 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -310,7 +310,7 @@ typedef struct wmNotifier {
 #define ND_HISTORY (4 << 16)
 #define ND_JOB (5 << 16)
 #define ND_UNDO (6 << 16)
-#define ND_XR_DATA_CHANGED (7 << 17)
+#define ND_XR_DATA_CHANGED (7 << 16)
 
 /* NC_SCREEN */
 #define ND_LAYOUTBROWSE (1 << 16)



More information about the Bf-blender-cvs mailing list