aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 9d96b23..c0e7f9c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -905,7 +905,7 @@ export default defineComponent({
}
};
let currentTime = new Date().getTime();
- if (currentTime - this.lastResizeHdlrTime > this.uiOpts.animationDelay){
+ if (currentTime - this.lastResizeHdlrTime > this.uiOpts.transitionDuration){
this.lastResizeHdlrTime = currentTime;
await handleResize();
this.lastResizeHdlrTime = new Date().getTime();