rename NavigationData anchor and offset to cursor_anchor and cursor_offset

This commit is contained in:
Keith Simmons 2022-04-13 14:53:47 -07:00
parent 9cec6d8d65
commit b893cb6d82
2 changed files with 7 additions and 7 deletions

View file

@ -850,8 +850,8 @@ struct ClipboardSelection {
pub struct NavigationData {
// Matching offsets for anchor and scroll_top_anchor allows us to recreate the anchor if the buffer
// has since been closed
anchor: Anchor,
offset: usize,
cursor_anchor: Anchor,
cursor_offset: usize,
scroll_position: Vector2F,
scroll_top_anchor: Anchor,
scroll_top_offset: usize,
@ -3912,8 +3912,8 @@ impl Editor {
}
nav_history.push(Some(NavigationData {
anchor: position,
offset,
cursor_anchor: position,
cursor_offset: offset,
scroll_position: self.scroll_position,
scroll_top_anchor: self.scroll_top_anchor.clone(),
scroll_top_offset,