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>2020-05-15 05:47:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-15 05:47:47 +0300
commit4ce1829289b0b5f5632e0b6f2a70feb122575820 (patch)
tree91db649b69bdb1e2b63f637ff30a019fef35152d /source/blender/makesdna
parentf716bb3b7102a608a60f8629818e4dfa138292fc (diff)
Cleanup: don't check flags as booleans
Causes unexpected behavior when adding new flags.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 21def800e4a..27097dc160c 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -548,7 +548,7 @@ enum {
V3D_AROUND_ACTIVE = 4,
};
-/** #View3d.gridflag */
+/** #View3D.gridflag */
#define V3D_SHOW_FLOOR (1 << 0)
#define V3D_SHOW_X (1 << 1)
#define V3D_SHOW_Y (1 << 2)