fix copy-and-paste bug

This commit is contained in:
Thomas Fussell 2022-08-21 11:18:20 -05:00
parent c689943a63
commit d45e831f47

View File

@ -91,7 +91,7 @@ range_iterator &range_iterator::operator--()
if (skip_null_) if (skip_null_)
{ {
while ((**this).empty() && cursor_.row() > bounds_.top_left().column()) while ((**this).empty() && cursor_.column() > bounds_.top_left().column())
{ {
cursor_.column_index(cursor_.column_index() - 1); cursor_.column_index(cursor_.column_index() - 1);
} }