You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue:
The burn-in on saved slicecore objects is automatically set to 0.25 even if, when initially creating the core, I set the burn-in length to be something different. Specifying a burn-in length when loading in an old slicecore does not change it from 0.25.
My quick fix:
Change line 79 in slices.py to super().__init__(corepath=corepath, burn=burn) so that specifying the burn-in length when loading an old slicecore replaces the default 0.25.
The text was updated successfully, but these errors were encountered:
The issue:
The burn-in on saved slicecore objects is automatically set to 0.25 even if, when initially creating the core, I set the burn-in length to be something different. Specifying a burn-in length when loading in an old slicecore does not change it from 0.25.
My quick fix:
Change line 79 in slices.py to
super().__init__(corepath=corepath, burn=burn)
so that specifying the burn-in length when loading an old slicecore replaces the default 0.25.The text was updated successfully, but these errors were encountered: