aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-20 23:51:48 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-20 23:51:48 +1000
commit8d7def041a4294c92fec77f65efdaa189c57c88a (patch)
tree9d3df23950c0caf7de7b785832012e5f8c4c2187 /src/App.vue
parente47cf18269830265632a7745271a492a73ce3ae3 (diff)
Avoid skipping initial transition due to large animation-time setting
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index 99f4018..2916ea8 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -660,7 +660,7 @@ export default defineComponent({
this.updateAreaDims().then(() => {
this.relayoutWithCollapse(false);
this.justInitialised = true;
- setTimeout(() => {this.justInitialised = false;}, this.uiOpts.tileChgDuration);
+ setTimeout(() => {this.justInitialised = false;}, 300);
});
})
.catch(error => {