From 27075b028c7c4298d42fda8933b5bfa54728ccf5 Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Thu, 2 Apr 2020 23:56:14 -0700 Subject: [PATCH] Update zoom refresh (#1180) One second feels way too long. Let's try 300ms --- src/components/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/App.tsx b/src/components/App.tsx index ffdcdfb5..a1f16436 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -2628,7 +2628,7 @@ export class App extends React.Component { private resetShouldCacheIgnoreZoomDebounced = debounce(() => { this.setState({ shouldCacheIgnoreZoom: false }); - }, 1000); + }, 300); private saveDebounced = debounce(() => { saveToLocalStorage(globalSceneState.getAllElements(), this.state);