diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-20 23:51:48 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-20 23:51:48 +1000 |
| commit | 8d7def041a4294c92fec77f65efdaa189c57c88a (patch) | |
| tree | 9d3df23950c0caf7de7b785832012e5f8c4c2187 | |
| parent | e47cf18269830265632a7745271a492a73ce3ae3 (diff) | |
Avoid skipping initial transition due to large animation-time setting
| -rw-r--r-- | src/App.vue | 2 |
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 => { |
