diff options
author | sr55 <[email protected]> | 2011-10-15 11:39:31 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-15 11:39:31 +0000 |
commit | f9bacce5f7bf435724131b8ece2b14b0c3d82240 (patch) | |
tree | f6c39e2dd335036bc37eeb4025cdca86ac1ecfc2 /win/CS | |
parent | c1b07b544a635df3f03da077d284219381c60477 (diff) |
WinGui: Remove "Add only one" check from "Add All" on the audio panel
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4287 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/Controls/AudioPanel.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs index f75ad9493..8463e9969 100644 --- a/win/CS/Controls/AudioPanel.cs +++ b/win/CS/Controls/AudioPanel.cs @@ -451,12 +451,6 @@ namespace Handbrake.Controls foundTrack = true;
continue;
}
-
- if (this.UserSettingService.GetUserSetting<bool>(UserSettingConstants.AddOnlyOneAudioPerLanguage) && currentTrack.TrackDisplay.Contains(sourceTrack.Language))
- {
- foundTrack = true;
- continue;
- }
}
if (foundTrack)
|