Skip to content

Commit

Permalink
Disable mining buttons while recording
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Jan 6, 2024
1 parent 40487fc commit ca6bb00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/ui/components/SidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ export default function SidePanel({ settings, extension }: Props) {
subtitles={subtitles}
hideControls={true}
showCopyButton={true}
copyButtonEnabled={currentTabId === syncedVideoTab?.id}
copyButtonEnabled={!recordingAudio && currentTabId === syncedVideoTab?.id}
forceCompressedMode={true}
subtitleReader={subtitleReader}
settings={settings}
Expand Down

0 comments on commit ca6bb00

Please sign in to comment.