mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-05 02:29:11 +00:00
fix: attempt to fix gestures breaking seekbar on android
This commit is contained in:
parent
2a594255a4
commit
a0561ec0f7
2 changed files with 3 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ui",
|
"name": "ui",
|
||||||
"version": "6.4.115",
|
"version": "6.4.116",
|
||||||
"license": "BUSL-1.1",
|
"license": "BUSL-1.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@9.15.5",
|
"packageManager": "pnpm@9.15.5",
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,8 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:window on:blur={endHover} />
|
<!-- fix for android gestures not cancelling pointer when closing the app using gestures from the bottom which hovers the seekbar, insane. -->
|
||||||
|
<svelte:document on:visibilitychange={endHover} />
|
||||||
|
|
||||||
<div class='w-full flex cursor-pointer relative group/seekbar touch-none !transform-none' class:!cursor-grab={seeking}
|
<div class='w-full flex cursor-pointer relative group/seekbar touch-none !transform-none' class:!cursor-grab={seeking}
|
||||||
tabindex='0' role='slider' aria-valuenow='0'
|
tabindex='0' role='slider' aria-valuenow='0'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue