Skip to content

Commit

Permalink
fix(QScrollArea): allow mouse events on contents to trigger on the fi…
Browse files Browse the repository at this point in the history
…rst tap on iOS

Fixes quasarframework#16210
  • Loading branch information
thexeos committed Aug 18, 2023
1 parent f8b4582 commit afc3daf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/src/components/scroll-area/QScrollArea.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,9 @@ export default createComponent({
}

function onMouseenter () {
hover.value = true
setTimeout(() => {
hover.value = true
}, proxy.$q.platform.is.ios ? 50 : 0)
}

function onMouseleave () {
Expand Down

0 comments on commit afc3daf

Please sign in to comment.