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:
Diffstat (limited to 'source/blender/makesdna/DNA_view2d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view2d_types.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_view2d_types.h b/source/blender/makesdna/DNA_view2d_types.h
index 683a40a3682..263b2718136 100644
--- a/source/blender/makesdna/DNA_view2d_types.h
+++ b/source/blender/makesdna/DNA_view2d_types.h
@@ -94,11 +94,14 @@ typedef struct View2D {
/* special hacks for outliner hscroll - prevent hanging older versions of Blender */
#define B_SCROLLO (1<<4)
#define HOR_SCROLLO (T_SCROLL|B_SCROLLO)
- /* scale markings */
+ /* scale markings - vertical */
#define LGRID_SCROLL (1<<5)
#define RGRID_SCROLL (1<<6)
+#define VERT_SCROLLGRID (LGRID_SCROLL|RGRID_SCROLL)
+ /* scale markings - horizontal */
#define BGRID_SCROLL (1<<7)
#define TGRID_SCROLL (1<<8)
+#define HOR_SCROLLGRID (BGRID_SCROLL|TGRID_SCROLL)
#endif