diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-08-30 20:48:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-30 12:48:23 -0700 |
commit | ab260c3599294c7526a6d8cdf2657708e9b5a5c7 (patch) | |
tree | b86954337875455220bfaec060b9d1b73a231b42 /src/view/com/composer/videos/VideoTranscodeBackdrop.tsx | |
parent | 8647c8e9f589401b1763fa8af596a6fd12bad04e (diff) | |
download | voidsky-ab260c3599294c7526a6d8cdf2657708e9b5a5c7.tar.zst |
[Video] Minor player tweaks (#5044)
Diffstat (limited to 'src/view/com/composer/videos/VideoTranscodeBackdrop.tsx')
-rw-r--r-- | src/view/com/composer/videos/VideoTranscodeBackdrop.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx b/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx index 1f4173642..ef38e62af 100644 --- a/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx +++ b/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx @@ -21,8 +21,8 @@ export function VideoTranscodeBackdrop({uri}: {uri: string}) { }, []) return ( - <Animated.View style={a.flex_1} entering={FadeIn}> - {thumbnail && ( + thumbnail && ( + <Animated.View style={a.flex_1} entering={FadeIn}> <Image style={a.flex_1} source={thumbnail.path} @@ -31,7 +31,7 @@ export function VideoTranscodeBackdrop({uri}: {uri: string}) { blurRadius={15} contentFit="cover" /> - )} - </Animated.View> + </Animated.View> + ) ) } |