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-07-11 19:51:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-11 19:55:54 +0300
commit4e9d039ef70e7593160396b526745c7136cfb85d (patch)
tree0ce18e5475a48c266d9fcfe3926360111ffb4d79 /source/blender/makesdna/DNA_view3d_types.h
parent9bf1868eaebc3bed10cc360f13f858e7b4321159 (diff)
3D View: option not to draw center dots
While this is a fairly obscure option, it means it's possible to disable all overlays except for any overlays the users wants to see.
Diffstat (limited to 'source/blender/makesdna/DNA_view3d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 365fe125e83..e0ab3a744f1 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -388,6 +388,7 @@ enum {
V3D_OVERLAY_ONION_SKINS = (1 << 7),
V3D_OVERLAY_HIDE_BONES = (1 << 8),
V3D_OVERLAY_HIDE_OBJECT_XTRAS = (1 << 9),
+ V3D_OVERLAY_HIDE_OBJECT_ORIGINS = (1 << 10),
};
/* View3DOverlay->edit_flag */