Commit 29d9c7a1a190331bc3c7c26536e6010af3e41651
1 parent
2a9da902
Exists in
master
Markers file magic string is now prepended with two hashtags.
Thus it will be treated as a comment by parsers that use hashtags for comments.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/constants.py
... | ... | @@ -827,7 +827,7 @@ TREKKER_CONFIG = {'seed_max': 1, 'step_size': 0.1, 'min_fod': 0.1, 'probe_qualit |
827 | 827 | 'write_interval': 50, 'numb_threads': '', 'max_lenth': 200, |
828 | 828 | 'min_lenth': 20, 'max_sampling_step': 100} |
829 | 829 | |
830 | -MARKER_FILE_MAGICK_STRING = "INVESALIUS3_MARKER_FILE_" | |
830 | +MARKER_FILE_MAGICK_STRING = "##INVESALIUS3_MARKER_FILE_" | |
831 | 831 | CURRENT_MARKER_FILE_VERSION = 0 |
832 | 832 | WILDCARD_MARKER_FILES = _("Marker scanner coord files (*.mkss)|*.mkss") |
833 | 833 | ... | ... |