From 768a15f8da66706f5c7a3aa9a0ca4be65ee82997 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Fri, 1 Jul 2022 21:25:31 +1000 Subject: Fix parent-swept-tiles flash-after-unhidden bug --- src/components/Tile.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/Tile.vue b/src/components/Tile.vue index 0105e57..76ff645 100644 --- a/src/components/Tile.vue +++ b/src/components/Tile.vue @@ -411,7 +411,7 @@ export default defineComponent({ hidden(newVal: boolean, oldVal: boolean){ if (oldVal && !newVal){ this.justUnhidden = true; - setTimeout(() => {this.justUnhidden = false;}, this.uiOpts.transitionDuration); + setTimeout(() => {this.justUnhidden = false;}, this.uiOpts.transitionDuration + 100); } }, // Used to 'flash' the tile when focused -- cgit v1.2.3