Fix the autoscroll_on_clicks setting working incorrectly (#21362)

This commit is contained in:
Haru Kim 2024-11-30 21:30:27 +09:00 committed by GitHub
parent 57a45d80ad
commit c1de606581
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2967,7 +2967,7 @@ impl Editor {
auto_scroll = false;
}
}
auto_scroll &= !EditorSettings::get_global(cx).autoscroll_on_clicks;
auto_scroll &= EditorSettings::get_global(cx).autoscroll_on_clicks;
let point_to_delete: Option<usize> = {
let selected_points: Vec<Selection<Point>> =