From a2f19a0049d9ec69b97156cc0d72d3f341354750 Mon Sep 17 00:00:00 2001 From: tfmoraes Date: Wed, 7 Jul 2010 14:15:37 +0000 Subject: [PATCH] FIX: Only not apply a flip in surface creation when the exam is in coronal orientation --- invesalius/data/surface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/invesalius/data/surface.py b/invesalius/data/surface.py index 17fb481..f9d82e6 100644 --- a/invesalius/data/surface.py +++ b/invesalius/data/surface.py @@ -432,10 +432,10 @@ class SurfaceManager(): language = ses.Session().language - if (prj.Project().original_orientation == const.AXIAL): - flip_image = True - else: + if (prj.Project().original_orientation == const.CORONAL): flip_image = False + else: + flip_image = True pipe_in, pipe_out = multiprocessing.Pipe() sp = surface_process.SurfaceProcess(pipe_in, filename_img, mode, min_value, max_value, -- libgit2 0.21.2