mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-08-06 05:46:26 +00:00
Remove non-needed bind mode
This commit is contained in:
@@ -332,7 +332,7 @@ const bindingStrategyForEndpointDragging = (
|
||||
? {
|
||||
element: hovered,
|
||||
focusPoint: point,
|
||||
mode: hit ? "inside" : "outside",
|
||||
mode: "inside",
|
||||
}
|
||||
: { mode: undefined };
|
||||
|
||||
|
||||
@@ -279,7 +279,7 @@ export type ExcalidrawTextElementWithContainer = {
|
||||
|
||||
export type FixedPoint = [number, number];
|
||||
|
||||
export type BindMode = "inside" | "outside" | "orbit";
|
||||
export type BindMode = "inside" | "orbit";
|
||||
|
||||
export type FixedPointBinding = {
|
||||
elementId: ExcalidrawBindableElement["id"];
|
||||
|
||||
Reference in New Issue
Block a user