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@microsoft.com>2016-10-31 21:58:00 +0300
committerVsevolod Kukol <sevoku@microsoft.com>2016-10-31 21:58:00 +0300
commitc531a3bb9cbd0bf068487cf6b5857f0192c2104b (patch)
treeb43c37878f46b9d655e4772c1c401efce2633836 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs
parent796a9a6ad33f1069bd260cdc68840d4bdd60ff08 (diff)
[Ide] Fix Gtk error in About Dialog
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
index 8ea97ad272..33b444c068 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CommonAboutDialog.cs
@@ -78,7 +78,6 @@ namespace MonoDevelop.Ide.Gui.Dialogs
copyButton.NoShowAll = true;
var backButton = new Button () { Label = GettextCatalog.GetString ("Show Details") };
- backButton.CanDefault = backButton.HasDefault = true;
ActionArea.PackEnd (backButton, false, false, 0);
backButton.Clicked += (sender, e) => {
if (notebook.Page == 0) {
@@ -92,6 +91,7 @@ namespace MonoDevelop.Ide.Gui.Dialogs
notebook.Page = 0;
}
};
+ backButton.HasDefault = backButton.CanDefault = true;
ShowAll ();
}