Nic

Results 8 comments of Nic

I still get this issue with Mullvad on MacOS 😢

My solution was to create a `:change` trigger, and in that trigger, tell the input to fire an input event: ``` this.$refs.keyboard.input.dispatchEvent(new Event('input', { bubbles: true })); ```

I've looked into this. It seems as though `isAdded` does not give accurate values for sufficiently fast calls of `show` (there's a delay). I discovered this while building the requested...

Good timing - right before I submitted my pull request / gave up on `show` for the moment I started writing something very similar with `synchronized` blocks. I figured some...

`onResume` happens later in the fragment lifecycle I believe, so I am rolling with that. Pulling changes now.

Seems fixed! This should be closed, no? I Think I tested it pretty thoroughly manually but would like to write actual tests (the reason being - I would also test...

I got started on a basic hack to get this working - it's surely not the best way to go about it and still needs to load parent model, target...