-
Notifications
You must be signed in to change notification settings - Fork 0
Import export xlsx icalc separate wasm #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
3fe119d to
b9f70b0
Compare
Also clean up a bit of the keyboard shortcuts mess
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bugbot free trial expires on August 2, 2025
Learn more in the Cursor dashboard.
| return Err(format!( | ||
| "The selected cell is not in one of the corners. Column '{selected_column}' and column range '({start_column}, {end_column})'" | ||
| )); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Row and Column Selection Comments Swapped
The comments describing full row and full column selections are swapped. The code block for start_row == 1 && end_row == LAST_ROW correctly handles full column selections but is incorrectly commented as 'full row selected'. Similarly, the block for start_column == 1 && end_column == LAST_COLUMN correctly handles full row selections but is incorrectly commented as 'full column selected'. While the validation logic within these blocks is correct for the actual selection type, the comments are misleading.
No description provided.