fix(subtitles): keep overlapping lines that join an already active cue (#221)

This commit is contained in:
2026-08-27 23:13:29 -07:00
committed by GitHub
parent c2c25c0da6
commit 6e945f0872
14 changed files with 430 additions and 132 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import type { SubtitleCue } from '../core/services/subtitle-cue-parser';
import type { AssVerticalBand, SubtitleCue } from '../core/services/subtitle-cue-parser';
export enum PartOfSpeech {
noun = 'noun',
@@ -187,7 +187,7 @@ export interface ResolvedTokenPos2ExclusionConfig {
export type FrequencyDictionaryMode = 'single' | 'banded';
export type { SubtitleCue };
export type { AssVerticalBand, SubtitleCue };
export type SubtitleSidebarLayout = 'overlay' | 'embedded';