From 2178939191dbf11cd5cb0c687518cd6c8bd4ce83 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Wed, 12 Aug 2026 11:55:08 +0200 Subject: [PATCH] Fix title tooltip appearing for fullscreen videos (#40127) --- app/javascript/mastodon/features/video/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/video/index.tsx b/app/javascript/mastodon/features/video/index.tsx index 6721b5c96a2..ca5d07d7782 100644 --- a/app/javascript/mastodon/features/video/index.tsx +++ b/app/javascript/mastodon/features/video/index.tsx @@ -836,7 +836,7 @@ export const Video: React.FC<{ role='button' tabIndex={0} aria-label={alt} - title={alt} + title={fullscreen ? undefined : alt} lang={lang} onClick={handleClick} onKeyDownCapture={handleVideoKeyDown}