FIX: Correct range when pasting csv tetx
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
7c8cd22ad8
commit
5d7f4a31d6
@@ -1809,7 +1809,7 @@ impl UserModel {
|
||||
}
|
||||
self.push_diff_list(diff_list);
|
||||
// select the pasted area
|
||||
self.set_selected_range(area.row, area.column, row, column)?;
|
||||
self.set_selected_range(area.row, area.column, row - 1, column - 1)?;
|
||||
self.evaluate_if_not_paused();
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user