Commit 0da93f69f1a16af300dc63e69b872c9ce2f7b65e
1 parent
74982945
Exists in
master
and in
6 other branches
FIX: Text on slice for representing orientation
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
invesalius/control.py
... | ... | @@ -272,6 +272,7 @@ class Controller(): |
272 | 272 | filename = filename.replace(' ','_') |
273 | 273 | prj.Project().name = filename |
274 | 274 | prj.Project().path = filename |
275 | + print prj.Project().path | |
275 | 276 | prj.Project().SavePlistProject(dir_, filename) |
276 | 277 | session.Session().project_status = const.SAVE_PROJECT |
277 | 278 | |
... | ... | @@ -287,4 +288,4 @@ class Controller(): |
287 | 288 | const.THRESHOLD_INVALUE = proj.threshold_range[1] |
288 | 289 | const.WINDOW_LEVEL['Default'] = (proj.window, proj.level) |
289 | 290 | const.WINDOW_LEVEL['Manual'] = (proj.window, proj.level) |
290 | - self.LoadProject() | |
291 | 291 | \ No newline at end of file |
292 | + self.LoadProject() | ... | ... |