Commit 944129fffbdc7c5184334b22b866188f45730619
1 parent
2c4df64b
Exists in
master
and in
68 other branches
FIX: The removed the None in the plist dict when the project is saved.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/control.py
... | ... | @@ -402,7 +402,7 @@ class Controller(): |
402 | 402 | # TODO: Chamar grafico tb! |
403 | 403 | ps.Publisher().sendMessage('Update raycasting preset') |
404 | 404 | else: |
405 | - prj.Project().raycasting_preset = None | |
405 | + prj.Project().raycasting_preset = 0 | |
406 | 406 | ps.Publisher().sendMessage('Update raycasting preset') |
407 | 407 | ps.Publisher().sendMessage("Hide raycasting volume") |
408 | 408 | ... | ... |