diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-01 21:25:31 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-01 21:25:31 +1000 |
| commit | 768a15f8da66706f5c7a3aa9a0ca4be65ee82997 (patch) | |
| tree | 6056c4844fe2e15e402af2904ab02a29d3472224 /src | |
| parent | f2978efe205c509d79ced5b52d7fc311b1552e24 (diff) | |
Fix parent-swept-tiles flash-after-unhidden bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Tile.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
