Commit dd4ee4d0cb3a5c577fefd7941ade94d52bd51ea9
1 parent
3ec3d69b
Exists in
master
and in
68 other branches
FIX: Higroma case not opening
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/reader/dicom_grouper.py
... | ... | @@ -300,7 +300,7 @@ class DicomGroups: |
300 | 300 | #the number of previously existing number is |
301 | 301 | #greater or equal then the group keeps up, |
302 | 302 | #but maintains the same group of positions. |
303 | - if len(self.groups_dcm.keys()) < len(groups_dcm_.keys()): | |
303 | + if len(self.groups_dcm.keys()) > len(groups_dcm_.keys()): | |
304 | 304 | self.groups_dcm = groups_dcm_ |
305 | 305 | |
306 | 306 | for j in xrange(len(self.groups_dcm.keys())): | ... | ... |