Skip to content

Commit 82ee8a6

Browse files
committed
fix(display): reduce stickiness to east/west snap
1 parent 5bd6ca7 commit 82ee8a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/pages/display/arrangement.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ fn update_dragged_region(
448448

449449
let center = dragged_region.center();
450450

451-
let eastward = distance(east_point(&other_region), center) * 1.5;
452-
let westward = distance(west_point(&other_region), center) * 1.5;
451+
let eastward = distance(east_point(&other_region), center) * 1.25;
452+
let westward = distance(west_point(&other_region), center) * 1.25;
453453
let northward = distance(north_point(&other_region), center);
454454
let southward = distance(south_point(&other_region), center);
455455

0 commit comments

Comments
 (0)