diff options
author | sr55 <[email protected]> | 2009-02-16 23:14:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-02-16 23:14:36 +0000 |
commit | 4094ee87962714480465a116035a534d19ecc55c (patch) | |
tree | 81654c255a372d37506172367059927abe837ac1 /win/C#/frmMain | |
parent | 035b26f4699666d0337cc6ec62f37d8392ee3847 (diff) |
WinGui:
- Moved the x264 panel onto it's own panel. This cleans up frmMain significantly and makes it a tad easier to maintain. Started to clean up the code a bit.
- Reworded the b-adapt pop up menu items: "Off", "Fast", "Optimal" as per 2162
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2166 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain')
-rw-r--r-- | win/C#/frmMain/PresetLoader.cs | 2 | ||||
-rw-r--r-- | win/C#/frmMain/QueryGenerator.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/frmMain/PresetLoader.cs b/win/C#/frmMain/PresetLoader.cs index ed5dccdcb..dd6ee48be 100644 --- a/win/C#/frmMain/PresetLoader.cs +++ b/win/C#/frmMain/PresetLoader.cs @@ -316,7 +316,7 @@ namespace Handbrake // H264 Tab & Preset Name
#region other
- mainWindow.rtf_x264Query.Text = presetQuery.H264Query;
+ mainWindow.x264Panel.x264Query = presetQuery.H264Query;
// Set the preset name
mainWindow.groupBox_output.Text = "Output Settings (Preset: " + name + ")";
diff --git a/win/C#/frmMain/QueryGenerator.cs b/win/C#/frmMain/QueryGenerator.cs index 31ba53e6c..a14e3e824 100644 --- a/win/C#/frmMain/QueryGenerator.cs +++ b/win/C#/frmMain/QueryGenerator.cs @@ -424,8 +424,8 @@ namespace Handbrake #endregion
#region H264 Tab
- if (mainWindow.rtf_x264Query.Text != "")
- query += " -x " + mainWindow.rtf_x264Query.Text;
+ if (mainWindow.x264Panel.x264Query != "")
+ query += " -x " + mainWindow.x264Panel.x264Query;
#endregion
#region Processors / Other
|