X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FfrmOptions.cs;h=5427aeb20195d6c372555fea8f0f391d65883051;hb=b8c7cf18f82ad8552e4a79ab3e93794a2e7759e5;hp=9fd7c2246bde53e6131957c188b197ad1da5dd98;hpb=f609e0f81ec286783c7353e333837dd79241dd3a;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 9fd7c224..5427aeb2 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -144,6 +144,7 @@ namespace Handbrake // Enable / Disable Query editor tab if (Properties.Settings.Default.QueryEditorTab) check_queryEditorTab.CheckState = CheckState.Checked; + check_promptOnUnmatchingQueries.Enabled = check_queryEditorTab.Checked; // Prompt on inconsistant queries check_promptOnUnmatchingQueries.Checked = Properties.Settings.Default.PromptOnUnmatchingQueries; @@ -156,7 +157,8 @@ namespace Handbrake if (Properties.Settings.Default.enocdeStatusInGui) check_inGuiStatus.CheckState = CheckState.Checked; - check_showCliForInGUIEncode.Checked = Properties.Settings.Default.showCliForInGuiEncodeStatus; + check_showCliForInGUIEncode.Checked = Properties.Settings.Default.showCliForInGuiEncodeStatus; + check_showCliForInGUIEncode.Enabled = check_inGuiStatus.Checked; // Set the preview count drop_previewScanCount.SelectedItem = Properties.Settings.Default.previewScanCount.ToString(); @@ -399,12 +401,14 @@ namespace Handbrake { Properties.Settings.Default.enocdeStatusInGui = check_inGuiStatus.Checked; + check_showCliForInGUIEncode.Enabled = check_inGuiStatus.Checked; + if (this.IsHandleCreated) if (check_inGuiStatus.Checked) { MessageBox.Show("This feature is experimental!\n\n You will not be able to ‘Stop’ an encode mid-process.\n" + "Doing so will render the file unplayable.\n" + - "If you enable 'Show CLI Window', you'll be ablt to hit ctrl-c in the encode window to cleanly exit the CLI. This will give you a playable file.\n\n" + + "If you enable 'Show CLI Window', you'll be ablt to hit ctrl-c in the encode window to cleanly exit the CLI. This will give you a playable file.\n\n" + "You are also limited to 1 instance of HandBrakeCLI on your system.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning); }