From 8d7def041a4294c92fec77f65efdaa189c57c88a Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Mon, 20 Jun 2022 23:51:48 +1000 Subject: Avoid skipping initial transition due to large animation-time setting --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 => { -- cgit v1.2.3