Browse Source

Fixed SD2-542. 'Show tooltip when moving mouse over expression' check box set to the value of the CodeCompletionOptions.TooltipsEnabled flag.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@702 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 20 years ago
parent
commit
140507c756
  1. 2
      src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs

2
src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/CodeCompletionPanel.cs

@ -42,7 +42,7 @@ namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels @@ -42,7 +42,7 @@ namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels
Get<CheckBox>("useTooltips").CheckedChanged += delegate(object sender, EventArgs e) {
ControlDictionary["useDebugTooltipsOnlyCheckBox"].Enabled = Get<CheckBox>("useTooltips").Checked;
};
Get<CheckBox>("useTooltips").Checked = CodeCompletionOptions.EnableCodeCompletion;
Get<CheckBox>("useTooltips").Checked = CodeCompletionOptions.TooltipsEnabled;
Get<CheckBox>("useDebugTooltipsOnly").Checked = CodeCompletionOptions.TooltipsOnlyWhenDebugging;

Loading…
Cancel
Save