mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
disable detectPositionChange by default
This commit is contained in:
parent
bfc8415554
commit
4fb906baad
2 changed files with 1 additions and 2 deletions
|
@ -325,7 +325,6 @@ const ExcalidrawWrapper = () => {
|
|||
langCode={langCode}
|
||||
renderCustomStats={renderCustomStats}
|
||||
detectScroll={false}
|
||||
detectPositionChange={false}
|
||||
/>
|
||||
{excalidrawAPI && <CollabWrapper excalidrawAPI={excalidrawAPI} />}
|
||||
{errorMessage && (
|
||||
|
|
|
@ -31,7 +31,7 @@ const Excalidraw = (props: ExcalidrawProps) => {
|
|||
renderCustomStats,
|
||||
onPaste,
|
||||
detectScroll = true,
|
||||
detectPositionChange = true,
|
||||
detectPositionChange = false,
|
||||
} = props;
|
||||
|
||||
const canvasActions = props.UIOptions?.canvasActions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue