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:
authorAntonioya <blendergit@gmail.com>2018-11-04 15:00:19 +0300
committerAntonioya <blendergit@gmail.com>2018-11-04 15:00:37 +0300
commit5cfcee8c393de6781423c9ef83716c94237fddfd (patch)
treeee6722664cc4f00c0f79058de878030ae42afdc6 /source/blender/makesdna/DNA_gpencil_types.h
parentd3c815bd0831f46c18bb4bddc9f290b5f47e2c45 (diff)
GP: Reorganize Canvas Grid
Now the grid is always controlled by the topbar selector and not in the canvas panel. To have two places to define orientation was confuse. The orientation by default (no lock) is always to view plane.
Diffstat (limited to 'source/blender/makesdna/DNA_gpencil_types.h')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index 42070839fac..fcaf8b00cde 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -335,7 +335,7 @@ typedef struct bGPgrid {
char _pad1[4];
int lines;
- int axis;
+ char pad_[4];
} bGPgrid;
/* Grease-Pencil Annotations - 'DataBlock' */
@@ -480,14 +480,6 @@ typedef enum eGP_DepthOrdering {
GP_XRAY_BACK = 2
} eGP_DepthOrdering;
-/* gpencil_grid_axis */
-enum {
- GP_GRID_AXIS_LOCK = (1 << 0),
- GP_GRID_AXIS_X = (1 << 1),
- GP_GRID_AXIS_Y = (1 << 2),
- GP_GRID_AXIS_Z = (1 << 3),
-};
-
/* ***************************************** */
/* Mode Checking Macros */