From 2d72afe1f0946f31aa6f6695cc1b295ebab9c138 Mon Sep 17 00:00:00 2001 From: Akinwale Ariwodola Date: Wed, 11 Apr 2018 11:13:32 -0400 Subject: [PATCH] fix action buttons displaying in full screen video mode --- app/src/page/file/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/page/file/view.js b/app/src/page/file/view.js index f0427c1b..e3c1b79f 100644 --- a/app/src/page/file/view.js +++ b/app/src/page/file/view.js @@ -124,7 +124,7 @@ class FilePage extends React.PureComponent { const mediaType = Lbry.getMediaType(contentType); const isPlayable = mediaType === 'video' || mediaType === 'audio'; const { height, channel_name: channelName, value } = claim; - const showActions = (completed || (fileInfo && !fileInfo.stopped && fileInfo.written_bytes < fileInfo.total_bytes)); + const showActions = !this.state.fullscreenMode && (completed || (fileInfo && !fileInfo.stopped && fileInfo.written_bytes < fileInfo.total_bytes)); const channelClaimId = value && value.publisherSignature && value.publisherSignature.certificateId;