From 7b90e7deaa04a4ac7e1af7d8bf5996549dd2ea5f Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 22 Jun 2009 20:27:46 +0000 Subject: [PATCH] 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 --- win/C#/Properties/Settings.Designer.cs | 2 +- win/C#/Properties/Settings.settings | 2 +- win/C#/app.config | 2 +- win/C#/frmMain.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index c30705a1f..76b8490c5 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -277,7 +277,7 @@ namespace Handbrake.Properties { [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("False")] + [global::System.Configuration.DefaultSettingValueAttribute("True")] public bool MainWindowMinimize { get { return ((bool)(this["MainWindowMinimize"])); diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index c710782bd..df43d5f66 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -66,7 +66,7 @@ C:\Program Files\VideoLAN\vlc\vlc.exe - False + True False diff --git a/win/C#/app.config b/win/C#/app.config index acd4d45ca..9a95c030e 100644 --- a/win/C#/app.config +++ b/win/C#/app.config @@ -71,7 +71,7 @@ C:\Program Files\VideoLAN\vlc\vlc.exe - False + True False 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 -- 2.40.0