mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
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:
parent
fc4c2dbd99
commit
3645da5f1e
6
.changeset/smooth-pens-beam.md
Normal file
6
.changeset/smooth-pens-beam.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/gallery": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Fix incorrect relative mouse coordinates for `Gallery` preview overlay
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user