diff options
author | sr55 <[email protected]> | 2009-06-22 20:27:46 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-22 20:27:46 +0000 |
commit | 7b90e7deaa04a4ac7e1af7d8bf5996549dd2ea5f (patch) | |
tree | d3fec1865f87f8576e75e2d2c30efbebafd2137f /win/C#/frmMain.cs | |
parent | 55394d4229f9fbcde3841f5b3d91467cbd10d7f5 (diff) |
WinGui:
- Fixed Query Editor tab option that got broken in the last commit.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2601 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.cs')
-rw-r--r-- | win/C#/frmMain.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs index c192be541..d9789b5db 100644 --- a/win/C#/frmMain.cs +++ b/win/C#/frmMain.cs @@ -82,7 +82,7 @@ namespace Handbrake treeView_presets.ExpandAll();
lbl_encode.Text = "";
queueWindow = new frmQueue(encodeQueue); // Prepare the Queue
- if (Properties.Settings.Default.QueryEditorTab)
+ if (!Properties.Settings.Default.QueryEditorTab)
tabs_panel.TabPages.RemoveAt(7); // Remove the query editor tab if the user does not want it enabled.
// Load the user's default settings or Normal Preset
|