Fix panic for noop selecting join (#5579)

pull/5/head
Pascal Kuthe 1 year ago committed by GitHub
parent 4d7082eb5c
commit 0e5159ceca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3939,6 +3939,11 @@ fn join_selections_impl(cx: &mut Context, select_space: bool) {
}
}
// nothing to do, bail out early to avoid crashes later
if changes.is_empty() {
return;
}
changes.sort_unstable_by_key(|(from, _to, _text)| *from);
changes.dedup();

Loading…
Cancel
Save