mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
Prevent panic dragging tab into terminal panel
This commit is contained in:
parent
b385373367
commit
31e47f9b52
@ -1754,6 +1754,10 @@ impl Pane {
|
||||
}
|
||||
|
||||
fn handle_drag_move<T>(&mut self, event: &DragMoveEvent<T>, cx: &mut ViewContext<Self>) {
|
||||
if !self.can_split {
|
||||
return;
|
||||
}
|
||||
|
||||
let edge_width = cx.rem_size() * 8;
|
||||
let cursor = event.event.position;
|
||||
let direction = if cursor.x < event.bounds.left() + edge_width {
|
||||
@ -1767,9 +1771,9 @@ impl Pane {
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
if direction != self.drag_split_direction {
|
||||
self.drag_split_direction = direction;
|
||||
cx.notify();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user