We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1618aed + 66f5298 commit e7aa1f7Copy full SHA for e7aa1f7
visidata/modify.py
@@ -48,7 +48,7 @@ def _deferredDels(sheet):
48
49
Sheet.colorizers += [
50
RowColorizer(9, 'color_add_pending', lambda s,c,r,v: s.rowid(r) in s._deferredAdds),
51
- CellColorizer(8, 'color_change_pending', lambda s,c,r,v: c and r and s.isChanged(c, r)),
+ CellColorizer(8, 'color_change_pending', lambda s,c,r,v: c and (r is not None) and s.isChanged(c, r)),
52
RowColorizer(9, 'color_delete_pending', lambda s,c,r,v: s.isDeleted(r)),
53
]
54
0 commit comments