mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-02 08:20:09 +00:00
Fix editor stealing click events from copy-error button
Co-authored-by: Antonio <antonio@zed.dev>
This commit is contained in:
parent
600b5c65e9
commit
74f3366f42
1 changed files with 3 additions and 1 deletions
|
@ -388,7 +388,9 @@ impl EditorElement {
|
|||
let mut click_count = event.click_count;
|
||||
let modifiers = event.modifiers;
|
||||
|
||||
if gutter_bounds.contains(&event.position) {
|
||||
if cx.default_prevented() {
|
||||
return;
|
||||
} else if gutter_bounds.contains(&event.position) {
|
||||
click_count = 3; // Simulate triple-click when clicking the gutter to select lines
|
||||
} else if !text_bounds.contains(&event.position) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue