aboutsummaryrefslogtreecommitdiff
path: root/src/components/Tile.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-07-01 21:25:31 +1000
committerTerry Truong <terry06890@gmail.com>2022-07-01 21:25:31 +1000
commit768a15f8da66706f5c7a3aa9a0ca4be65ee82997 (patch)
tree6056c4844fe2e15e402af2904ab02a29d3472224 /src/components/Tile.vue
parentf2978efe205c509d79ced5b52d7fc311b1552e24 (diff)
Fix parent-swept-tiles flash-after-unhidden bug
Diffstat (limited to 'src/components/Tile.vue')
-rw-r--r--src/components/Tile.vue2
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