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#/frmMain.cs | |
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#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index 91fb789c8..b80ae3b10 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -1011,11 +1011,14 @@ namespace Handbrake // Disable chapter markers if only 1 chapter is selected.
if (chapterStart == chapterEnd)
{
- Check_ChapterMarkers.Checked = false;
+ btn_importChapters.Enabled = false;
Check_ChapterMarkers.Enabled = false;
}
else
- Check_ChapterMarkers.Enabled = true;
+ {
+ btn_importChapters.Enabled = true;
+ Check_ChapterMarkers.Enabled = true;
+ }
}
//Destination
|