From b833655e533bc722e98ac9866e6d0e8ca10df245 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 17 Apr 2011 13:40:34 +0100 Subject: [PATCH] Add newlines --- SparkleShare/Mac/SparkleAbout.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SparkleShare/Mac/SparkleAbout.cs b/SparkleShare/Mac/SparkleAbout.cs index 3761008a..991c6069 100644 --- a/SparkleShare/Mac/SparkleAbout.cs +++ b/SparkleShare/Mac/SparkleAbout.cs @@ -58,14 +58,16 @@ namespace SparkleShare { SparkleShare.Controller.NewVersionAvailable += delegate (string new_version) { InvokeOnMainThread (delegate { UpdatesTextField.StringValue = "A newer version (" + new_version + ") is available!"; - UpdatesTextField.TextColor = NSColor.FromCalibratedRgba (0.96f, 0.47f, 0.0f, 1.0f); // Tango Orange #2 + UpdatesTextField.TextColor = + NSColor.FromCalibratedRgba (0.96f, 0.47f, 0.0f, 1.0f); // Tango Orange #2 }); }; SparkleShare.Controller.VersionUpToDate += delegate { InvokeOnMainThread (delegate { UpdatesTextField.StringValue = "You are running the latest version."; - UpdatesTextField.TextColor = NSColor.FromCalibratedRgba (0.45f, 0.82f, 0.09f, 1.0f); // Tango Chameleon #2 + UpdatesTextField.TextColor = + NSColor.FromCalibratedRgba (0.45f, 0.82f, 0.09f, 1.0f); // Tango Chameleon #2 }); }; }