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:
authorClément Foucault <foucault.clem@gmail.com>2018-09-06 15:48:17 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-09-06 16:00:44 +0300
commit5a134910b10019295f72e5226be99b3e76d52281 (patch)
tree798f12e023030d972cea19e67cea616d9b84b80a /source/blender/draw
parentb2d82d096a04c44febdaea6c50fb35858352d46a (diff)
Fix T56705: Z axis do not displays in side views
Diffstat (limited to 'source/blender/draw')
-rw-r--r--source/blender/draw/modes/object_mode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/modes/object_mode.c b/source/blender/draw/modes/object_mode.c
index 0a83feb879c..1ea34949a1e 100644
--- a/source/blender/draw/modes/object_mode.c
+++ b/source/blender/draw/modes/object_mode.c
@@ -508,7 +508,7 @@ static void OBJECT_engine_init(void *vedata)
if (show_axis_y) {
e_data.grid_flag |= SHOW_AXIS_Y;
}
- if (show_axis_z) {
+ {
e_data.grid_flag |= SHOW_AXIS_Z;
}
if (show_floor) {
@@ -534,7 +534,7 @@ static void OBJECT_engine_init(void *vedata)
if (show_axis_x) {
e_data.grid_flag |= SHOW_AXIS_X;
}
- if (show_axis_z) {
+ {
e_data.grid_flag |= SHOW_AXIS_Z;
}
if (show_floor) {