Add a double click to reset resized splits (#2762)

fixes https://github.com/zed-industries/community/issues/1791

Release Notes:

- Double clicking on split resize handles now resets the split's
dimensions
This commit is contained in:
Mikayla Maki 2023-07-20 10:55:19 -07:00 committed by GitHub
commit 0e9cad4935
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -826,18 +826,20 @@ mod element {
let child_size = child.size(); let child_size = child.size();
let next_child_size = next_child.size(); let next_child_size = next_child.size();
let drag_bounds = visible_bounds.clone(); let drag_bounds = visible_bounds.clone();
let flexes = self.flexes.clone(); let flexes = self.flexes.borrow();
let current_flex = flexes.borrow()[ix]; let current_flex = flexes[ix];
let next_ix = *next_ix; let next_ix = *next_ix;
let next_flex = flexes.borrow()[next_ix]; let next_flex = flexes[next_ix];
drop(flexes);
enum ResizeHandle {} enum ResizeHandle {}
let mut mouse_region = MouseRegion::new::<ResizeHandle>( let mut mouse_region = MouseRegion::new::<ResizeHandle>(
cx.view_id(), cx.view_id(),
self.basis + ix, self.basis + ix,
handle_bounds, handle_bounds,
); );
mouse_region = mouse_region.on_drag( mouse_region = mouse_region
MouseButton::Left, .on_drag(MouseButton::Left, {
let flexes = self.flexes.clone();
move |drag, workspace: &mut Workspace, cx| { move |drag, workspace: &mut Workspace, cx| {
let min_size = match axis { let min_size = match axis {
Axis::Horizontal => HORIZONTAL_MIN_SIZE, Axis::Horizontal => HORIZONTAL_MIN_SIZE,
@ -850,7 +852,8 @@ mod element {
return; return;
} }
let mut current_target_size = (drag.position - child_start).along(axis); let mut current_target_size =
(drag.position - child_start).along(axis);
let proposed_current_pixel_change = let proposed_current_pixel_change =
current_target_size - child_size.along(axis); current_target_size - child_size.along(axis);
@ -870,8 +873,10 @@ mod element {
); );
} }
let current_pixel_change = current_target_size - child_size.along(axis); let current_pixel_change =
let flex_change = current_pixel_change / drag_bounds.length_along(axis); current_target_size - child_size.along(axis);
let flex_change =
current_pixel_change / drag_bounds.length_along(axis);
let current_target_flex = current_flex + flex_change; let current_target_flex = current_flex + flex_change;
let next_target_flex = next_flex - flex_change; let next_target_flex = next_flex - flex_change;
@ -881,8 +886,19 @@ mod element {
workspace.schedule_serialize(cx); workspace.schedule_serialize(cx);
cx.notify(); cx.notify();
}, }
); })
.on_click(MouseButton::Left, {
let flexes = self.flexes.clone();
move |e, v: &mut Workspace, cx| {
if e.click_count >= 2 {
let mut borrow = flexes.borrow_mut();
*borrow = vec![1.; borrow.len()];
v.schedule_serialize(cx);
cx.notify();
}
}
});
scene.push_mouse_region(mouse_region); scene.push_mouse_region(mouse_region);
scene.pop_stacking_context(); scene.pop_stacking_context();