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:
authorLluis Sanchez <lluis@xamarin.com>2016-02-23 22:00:02 +0300
committerLluis Sanchez <lluis@xamarin.com>2016-02-23 22:06:52 +0300
commit94e04ea3bad1ade0e16dfc50251c9c353ccbe701 (patch)
tree944019988e0335a1e91110e8cf4b13de2a91eccb /main/src/core/MonoDevelop.Ide
parent7aa8f287c55720bd31908e555dca8be5435f66bf (diff)
Add link to licenses web page in about box
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs14
1 files changed, 11 insertions, 3 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
index 596bef099b..e79bd0cc61 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/AboutMonoDevelopTabPage.cs
@@ -71,16 +71,24 @@ namespace MonoDevelop.Ide.Gui.Dialogs
Text = GettextCatalog.GetString ("License"),
Font = infoBox.Font.WithWeight (Xwt.Drawing.FontWeight.Bold)
});
- infoBox.PackStart (new Xwt.Label () {
- Text = GettextCatalog.GetString ("Released under the GNU Lesser General Public License."),
+ var cbox = new Xwt.HBox () {
+ Spacing = 0,
MarginLeft = 12
+ };
+ cbox.PackStart (new Xwt.Label () {
+ Text = GettextCatalog.GetString ("License is available at ")
});
+ cbox.PackStart (new Xwt.LinkLabel () {
+ Text = string.Format ("http://xamarin.com/xamarin-studio-license"),
+ Uri = new Uri ("http://xamarin.com/xamarin-studio-license")
+ });
+ infoBox.PackStart (cbox);
infoBox.PackStart (new Xwt.Label () {
Text = GettextCatalog.GetString ("Copyright"),
Font = infoBox.Font.WithWeight (Xwt.Drawing.FontWeight.Bold)
});
- var cbox = new Xwt.HBox () {
+ cbox = new Xwt.HBox () {
Spacing = 0,
MarginLeft = 12
};