From 4b77835f28469ce9cdde1b16cc7740f74fc47333 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Wed, 12 Aug 2026 11:55:08 +0200 Subject: [PATCH] [Glitch] Fix title tooltip appearing for fullscreen videos Port 697e96c220e49794516cca88a46a6d193e95a994 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/features/video/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/video/index.tsx b/app/javascript/flavours/glitch/features/video/index.tsx index b43bfae703..5084255b4a 100644 --- a/app/javascript/flavours/glitch/features/video/index.tsx +++ b/app/javascript/flavours/glitch/features/video/index.tsx @@ -842,7 +842,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}