[Bf-blender-cvs] [5a134910b10] blender2.8: Fix T56705: Z axis do not displays in side views

Clément Foucault noreply at git.blender.org
Thu Sep 6 15:00:49 CEST 2018


Commit: 5a134910b10019295f72e5226be99b3e76d52281
Author: Clément Foucault
Date:   Thu Sep 6 14:48:17 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB5a134910b10019295f72e5226be99b3e76d52281

Fix T56705: Z axis do not displays in side views

===================================================================

M	source/blender/draw/modes/object_mode.c

===================================================================

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) {



More information about the Bf-blender-cvs mailing list