From 20bdb93b2e0f21147f8d3ec7d745010cb79db061 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 7 Feb 2011 18:04:36 +0000 Subject: [PATCH] [log] add subtle line under the webview --- SparkleShare/Mac/SparkleShare/SparkleLog.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/SparkleShare/Mac/SparkleShare/SparkleLog.cs b/SparkleShare/Mac/SparkleShare/SparkleLog.cs index a4956fac..1a1fdec9 100644 --- a/SparkleShare/Mac/SparkleShare/SparkleLog.cs +++ b/SparkleShare/Mac/SparkleShare/SparkleLog.cs @@ -89,10 +89,15 @@ namespace SparkleShare { string name = Path.GetFileName (LocalPath); Title = String.Format ("Recent Events in ‘{0}’", name); - - OrderFrontRegardless (); - + NSBox box = new NSBox (new RectangleF (0, 58, 480, 1)) { + BorderColor = NSColor.LightGray, + BoxType = NSBoxType.NSBoxCustom + }; + + ContentView.AddSubview (box); + + OrderFrontRegardless (); }