Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVsevolod Kukol <sevoku@xamarin.com>2016-06-01 20:59:04 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2016-06-02 11:02:06 +0300
commit7cbf5867f38f5f067da86b10559244a1f2fdf6d8 (patch)
tree58e954a558a732a1fe57e2a4d7cb921f45f2d270 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs
parentb66a080d5d2e61bc906777841a8545ccb4d9d178 (diff)
[Ide] Disable Gtk interactive search in TreeViews
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs
index bb4eeb7d7a..71394230da 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.OptionPanels/MonoRuntimePanel.cs
@@ -74,7 +74,8 @@ namespace MonoDevelop.Ide.Gui.OptionPanels
);
store = new ListStore (typeof(string), typeof(object));
tree.Model = store;
-
+ tree.SearchColumn = -1; // disable the interactive search
+
CellRendererText crt = new CellRendererText ();
tree.AppendColumn ("Runtime", crt, "markup", 0);
TargetRuntime defRuntime = IdeApp.Preferences.DefaultTargetRuntime;