Skip to content
Snippets Groups Projects
Commit b3a98afe authored by David Schäfer's avatar David Schäfer
Browse files

[FIX] history merges may lead to an inconsistent mask

parent ea06005f
No related branches found
No related tags found
3 merge requests!271Static expansion of regular expressions,!269Several fixes,!260Follow-Up Translations
......@@ -260,6 +260,9 @@ class History:
value_hist.columns = columns
value_mask.columns = columns
# clear the current mask
self.mask.loc[(~value_mask & value_hist.notna()).any(axis="columns")] = False
self.hist.loc[:, columns] = value_hist.copy()
self.mask.loc[:, columns] = value_mask.copy()
return self
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment