Bugfix: Karaoke splitting only worked on lines that were already marked dirty (autosplit lines being in that category), unless SSA mode was enabled.
Originally committed to SVN as r30.
This commit is contained in:
parent
3ad6a9db43
commit
360746e739
1 changed files with 1 additions and 1 deletions
|
@ -962,7 +962,7 @@ void AudioDisplay::SetDialogue(SubtitlesGrid *_grid,AssDialogue *diag,int n) {
|
||||||
//////////////////
|
//////////////////
|
||||||
// Commit changes
|
// Commit changes
|
||||||
void AudioDisplay::CommitChanges () {
|
void AudioDisplay::CommitChanges () {
|
||||||
if (!Options.AsBool(_T("Audio SSA Mode"))) {
|
if (!Options.AsBool(_T("Audio SSA Mode")) && !box->audioKaraoke->splitting) {
|
||||||
// Check if there's any need to commit
|
// Check if there's any need to commit
|
||||||
if (!NeedCommit) return;
|
if (!NeedCommit) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue