Don't stop propagation on mouse move over editor gutter

This commit is contained in:
Max Brunsfeld 2023-12-19 09:02:25 -08:00
parent cf037ea4a8
commit e655d2434a
2 changed files with 2 additions and 3 deletions

View File

@ -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);

View File

@ -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);