From 0bacff9c583ddf54b37b3015e244806e677e7e74 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 16 Oct 2012 21:51:26 +0100 Subject: [PATCH] about: fix debug log link position --- SparkleShare/Windows/SparkleAbout.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Windows/SparkleAbout.cs b/SparkleShare/Windows/SparkleAbout.cs index 3a239d4a..6f36956a 100644 --- a/SparkleShare/Windows/SparkleAbout.cs +++ b/SparkleShare/Windows/SparkleAbout.cs @@ -120,7 +120,7 @@ namespace SparkleShare { SparkleLink website_link = new SparkleLink ("Website", Controller.WebsiteLinkAddress); SparkleLink credits_link = new SparkleLink ("Credits", Controller.CreditsLinkAddress); SparkleLink report_problem_link = new SparkleLink ("Report a problem", Controller.ReportProblemLinkAddress); - SparkleLink debug_log_link = new SparkleLink ("Debig log", Controller.DebugLogLinkAddress); + SparkleLink debug_log_link = new SparkleLink ("Debug log", Controller.DebugLogLinkAddress); Canvas canvas = new Canvas (); @@ -154,7 +154,7 @@ namespace SparkleShare { canvas.Children.Add (debug_log_link); Canvas.SetLeft (debug_log_link, 289 + website_link.ActualWidth + credits_link.ActualWidth + - report_problem_link.ActualWidth + 180); + report_problem_link.ActualWidth + 220); Canvas.SetTop (debug_log_link, 222); Content = canvas;