From 77061d50da4d7a224032c99ba20f11c0300570c7 Mon Sep 17 00:00:00 2001 From: tfmoraes Date: Mon, 22 Jun 2009 14:18:47 +0000 Subject: [PATCH] Fix: Fixing raycasting preset name --- invesalius/data/volume.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/invesalius/data/volume.py b/invesalius/data/volume.py index c801249..c99d13c 100755 --- a/invesalius/data/volume.py +++ b/invesalius/data/volume.py @@ -60,9 +60,10 @@ class Volume(): def LoadConfig(self, label): if not label: - label = "Skin on Blue" + label = "Skin On Blue" - path = os.path.abspath("../presets/raycasting/"+label+".plist") + path = os.path.join("..", "presets", "raycasting", + label+".plist") self.config = plistlib.readPlist(path) def OnHideVolume(self, pubsub_evt): -- libgit2 0.21.2