diff options
author | dynaflash <[email protected]> | 2009-07-16 22:45:39 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2009-07-16 22:45:39 +0000 |
commit | 2a4cd175d2da9067dc144d7571ce0f66c7b95fea (patch) | |
tree | 532c753a4bf0196e07b9b06b9c30f7a95bd324ae /macosx/HBSubtitles.m | |
parent | 8bb7d25bba2dc06e8541f07583897c4030a1bc3c (diff) |
MacGui: remove broken conditional that was errantly included in srt subtitle initial implementation.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2700 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBSubtitles.m')
-rw-r--r-- | macosx/HBSubtitles.m | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/macosx/HBSubtitles.m b/macosx/HBSubtitles.m index 3d3b3476b..bffc4a5e3 100644 --- a/macosx/HBSubtitles.m +++ b/macosx/HBSubtitles.m @@ -783,17 +783,7 @@ container = newContainer; if ([[aTableColumn identifier] isEqualToString:@"forced"]) { - if ([[[subtitleArray objectAtIndex:rowIndex] objectForKey:@"subtitleSourceTrackType"] isEqualToString:@"SRT"]) - { - [aCell setState:0]; - [[subtitleArray objectAtIndex:rowIndex] setObject:0 forKey:@"subtitleTrackForced"]; - [aCell setEnabled:NO]; - } - else - { - [aCell setEnabled:YES]; [aCell setState:[[[subtitleArray objectAtIndex:rowIndex] objectForKey:@"subtitleTrackForced"] intValue]]; - } } else if ([[aTableColumn identifier] isEqualToString:@"burned"]) { |