fix copy-and-paste bug

pull/651/head
Thomas Fussell 2022-08-21 11:18:20 -05:00
parent c689943a63
commit d45e831f47
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ range_iterator &range_iterator::operator--()
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);
}