mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 23:59:52 +03:00
Don't stop propagation on mouse move over editor gutter
This commit is contained in:
parent
cf037ea4a8
commit
e655d2434a
@ -564,8 +564,6 @@ impl EditorElement {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
cx.stop_propagation();
|
||||
} else {
|
||||
update_go_to_definition_link(editor, None, modifiers.command, modifiers.shift, cx);
|
||||
hover_at(editor, None, cx);
|
||||
|
@ -495,7 +495,8 @@ impl Render for Dock {
|
||||
})
|
||||
.on_click(cx.listener(|v, e: &ClickEvent, cx| {
|
||||
if e.down.button == MouseButton::Left && e.down.click_count == 2 {
|
||||
v.resize_active_panel(None, cx)
|
||||
v.resize_active_panel(None, cx);
|
||||
cx.stop_propagation();
|
||||
}
|
||||
}))
|
||||
.z_index(1);
|
||||
|
Loading…
Reference in New Issue
Block a user