diff --git a/frontend-tools/video-editor/client/src/App.tsx b/frontend-tools/video-editor/client/src/App.tsx index 68dae021..e2f1e0be 100644 --- a/frontend-tools/video-editor/client/src/App.tsx +++ b/frontend-tools/video-editor/client/src/App.tsx @@ -285,6 +285,7 @@ const App = () => { isPlaying={isPlaying} setIsPlaying={setIsPlaying} onPlayPause={handlePlay} + isPlayingSegments={isPlayingSegments} /> {/* Clip Segments */} diff --git a/frontend-tools/video-editor/client/src/components/EditingTools.tsx b/frontend-tools/video-editor/client/src/components/EditingTools.tsx index 825b06ad..889df39b 100644 --- a/frontend-tools/video-editor/client/src/components/EditingTools.tsx +++ b/frontend-tools/video-editor/client/src/components/EditingTools.tsx @@ -103,8 +103,8 @@ const EditingTools = ({ )} - {/* Standard Play button (only shown when not in preview mode) */} - {!isPreviewMode && ( + {/* Standard Play button (only shown when not in preview mode or segments playback) */} + {!isPreviewMode && !isPlayingSegments && (