diff options
author | sr55 <[email protected]> | 2009-08-19 13:02:50 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-19 13:02:50 +0000 |
commit | 3b4e2879eb8e8c96285bac452a1be865977bba1e (patch) | |
tree | 8f21fa009ab91e1bf5a1d05626131e734430e731 /win/C#/Functions | |
parent | 6a2adf0f1470616c85f093b71fa068e56293de6e (diff) |
WinGui:
- Changed the Chapter Markers tab so that it doesn't clear the Chapter names if the feature is disable / re-enabled. It'll now keep user set names for each source.
- Moved the Add/Remove buttons to the top of the audio panel. This should better indicate the work flow.
- Moved the Add/remove subtitle buttons to the top of the subtitle panel for the same reason.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2767 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index b67dfa918..0fb6248e6 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -489,7 +489,7 @@ namespace Handbrake.Functions string[] titlesplit = source_title.Split(' ');
source_title = titlesplit[0];
- if (mainWindow.Check_ChapterMarkers.Checked)
+ if (mainWindow.Check_ChapterMarkers.Checked && mainWindow.Check_ChapterMarkers.Enabled)
{
if (dest_name.Trim() != String.Empty)
{
|