diff options
author | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-14 16:51:42 +0000 |
commit | fa2599b3cd9e61a6a7f4295154649dd6087b38bf (patch) | |
tree | 04debcb885c6cbe323c7b4c99f0632020c704916 /win/C#/frmQueue.cs | |
parent | b17a98a1f959008a6536141fa55a2e84fa74a065 (diff) |
WinGui:
- Removed some old CLI handler files that were never completed.
- Removed Quickstart Window along with some redundant code.
- Removed the Query Editor tab as it is no longer really needed.
- Removed CRF option as this is now the default.
- Removed DRC Checkbox. The slider is now used for activation.
- Few changes to the Naming of GUI items to match the MacGUI.
- Warnings about no source / destination removed from Save/open presets and set default options. Will only appear on Queue and Encode buttons now.
- Fixed autonaming issue where it was enabled even when it was disabled.
- Added option to the Tools menu to display the current CLI query. This may be useful now that the Query editor tab is gone.
- Options window design tweaked.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1128 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index 0fa625f96..4faff3936 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -292,8 +292,7 @@ namespace Handbrake else
{
if (list_queue.SelectedItem != null)
- {
- }
+ list_queue.Items[list_queue.SelectedIndex] = text_edit.Text;
}
}
@@ -310,16 +309,6 @@ namespace Handbrake #endregion
#region Queue Save & Batch Script
- private void btn_save_Click(object sender, EventArgs e)
- {
-
- }
-
- private void btn_open_Click(object sender, EventArgs e)
- {
-
- }
-
private void btn_batch_Click(object sender, EventArgs e)
{
string queries = "";
|