Skip to content

Commit

Permalink
fix copy-and-paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tfussell committed Aug 21, 2022
1 parent c689943 commit d45e831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/worksheet/range_iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit d45e831

Please sign in to comment.