Fix incorrect relative mouse coordinates for Gallery preview overlay (#7516)

* Fix incorrect relative mouse coordinates for `Gallery` preview overlay

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
MMP0 2024-03-05 08:48:22 +09:00 committed by GitHub
parent fc4c2dbd99
commit 3645da5f1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/gallery": minor
"gradio": minor
---
feat:Fix incorrect relative mouse coordinates for `Gallery` preview overlay

View File

@ -82,7 +82,7 @@
function handle_preview_click(event: MouseEvent): void {
const element = event.target as HTMLElement;
const x = event.clientX;
const x = event.offsetX;
const width = element.offsetWidth;
const centerX = width / 2;