Commit 00a27689df598278b8ab138cbc9cf308eff03420

Authored by tatiana
1 parent ce93f68d

ENC: sorting raycasting name list

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
invesalius/constants.py
... ... @@ -151,4 +151,5 @@ folder=RAYCASTING_PRESETS_DIRECTORY= os.path.join("..", "presets", "raycasting")
151 151  
152 152 RAYCASTING_TYPES = [filename.split(".")[0] for filename in
153 153 os.listdir(folder) if
154   - os.path.isfile(os.path.join(folder,filename))]
  154 + os.path.isfile(os.path.join(folder,filename))]
  155 +RAYCASTING_TYPES.sort()
... ...