Avoid tab bar background activating an item at the end of a tab drag

This commit is contained in:
Julia 2023-03-02 13:06:58 -08:00
parent 2e1adb0724
commit b343e8056a

View file

@ -1438,7 +1438,7 @@ impl View for Pane {
.with_style(theme.workspace.tab_bar.container)
.boxed()
})
.on_click(MouseButton::Left, move |_, cx| {
.on_down(MouseButton::Left, move |_, cx| {
cx.dispatch_action(ActivateItem(active_item_index));
})
.boxed(),