Remove centering view from Unimpaired commands (#6193)
Remove `align_view` calls from `goto_*_diag` as per issue #6177
This commit is contained in:
parent
e6597bc992
commit
39d5fb0e59
1 changed files with 0 additions and 4 deletions
|
@ -2941,7 +2941,6 @@ fn goto_first_diag(cx: &mut Context) {
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
doc.set_selection(view.id, selection);
|
doc.set_selection(view.id, selection);
|
||||||
align_view(doc, view, Align::Center);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn goto_last_diag(cx: &mut Context) {
|
fn goto_last_diag(cx: &mut Context) {
|
||||||
|
@ -2951,7 +2950,6 @@ fn goto_last_diag(cx: &mut Context) {
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
doc.set_selection(view.id, selection);
|
doc.set_selection(view.id, selection);
|
||||||
align_view(doc, view, Align::Center);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn goto_next_diag(cx: &mut Context) {
|
fn goto_next_diag(cx: &mut Context) {
|
||||||
|
@ -2973,7 +2971,6 @@ fn goto_next_diag(cx: &mut Context) {
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
doc.set_selection(view.id, selection);
|
doc.set_selection(view.id, selection);
|
||||||
align_view(doc, view, Align::Center);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn goto_prev_diag(cx: &mut Context) {
|
fn goto_prev_diag(cx: &mut Context) {
|
||||||
|
@ -2998,7 +2995,6 @@ fn goto_prev_diag(cx: &mut Context) {
|
||||||
None => return,
|
None => return,
|
||||||
};
|
};
|
||||||
doc.set_selection(view.id, selection);
|
doc.set_selection(view.id, selection);
|
||||||
align_view(doc, view, Align::Center);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn goto_first_change(cx: &mut Context) {
|
fn goto_first_change(cx: &mut Context) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue