Avoid creating occlusions for editor blocks, since these block mouse wheel events (#20649)
Just block mouse down events, and in the case of the inline assist prompt, set the default cursor. Release Notes: - N/A Co-authored-by: Richard <richard@zed.dev>
This commit is contained in:
parent
6b3c909155
commit
093c9cc87b
6 changed files with 20 additions and 13 deletions
|
@ -10431,7 +10431,7 @@ impl Editor {
|
|||
text_style = text_style.highlight(highlight_style);
|
||||
}
|
||||
div()
|
||||
.occlude()
|
||||
.block_mouse_down()
|
||||
.pl(cx.anchor_x)
|
||||
.child(EditorElement::new(
|
||||
&rename_editor,
|
||||
|
@ -14681,7 +14681,7 @@ pub fn diagnostic_block_renderer(
|
|||
.group(group_id.clone())
|
||||
.relative()
|
||||
.size_full()
|
||||
.occlude()
|
||||
.block_mouse_down()
|
||||
.pl(cx.gutter_dimensions.width)
|
||||
.w(cx.max_width - cx.gutter_dimensions.full_width())
|
||||
.child(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue