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
path: root/main
diff options
context:
space:
mode:
authorHelmut Duregger <helmutduregger@gmail.com>2011-07-24 14:39:03 +0400
committerHelmut Duregger <helmutduregger@gmail.com>2011-07-24 14:39:03 +0400
commit7e644afccdf4bbfec6901e1a691808f808699d3e (patch)
tree3fd7aef28c913806fe6e6b2e306b5e1ca1dd0826 /main
parent34a1526d9db7261d7de6b81044bdce3f987e252e (diff)
Fix button initialization.
Diffstat (limited to 'main')
-rw-r--r--main/src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ClassOutlineTextEditorExtension.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ClassOutlineTextEditorExtension.cs b/main/src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ClassOutlineTextEditorExtension.cs
index d895976756..710f8d8425 100644
--- a/main/src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ClassOutlineTextEditorExtension.cs
+++ b/main/src/addins/MonoDevelop.DesignerSupport/MonoDevelop.DesignerSupport/ClassOutlineTextEditorExtension.cs
@@ -170,6 +170,7 @@ namespace MonoDevelop.DesignerSupport
var sortAlphabeticallyToggleButton = new ToggleButton () {
Image = new Image (Gtk.Stock.SortAscending, IconSize.Menu),
TooltipText = GettextCatalog.GetString ("Sort entries alphabetically"),
+ Active = settings.IsSorted,
};
sortAlphabeticallyToggleButton.Toggled += delegate {
if (sortAlphabeticallyToggleButton.Active == settings.IsSorted)