From b2e9a2edf4e1ffb14588d6c36f163e3f7f9db323 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 4 Oct 2010 23:57:43 +0100 Subject: [PATCH] [link] fix brokenness when using underlines in the file name --- SparkleShare/SparkleLink.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleLink.cs b/SparkleShare/SparkleLink.cs index 30928498..2171f3ed 100644 --- a/SparkleShare/SparkleLink.cs +++ b/SparkleShare/SparkleLink.cs @@ -26,9 +26,10 @@ namespace SparkleShare { public SparkleLink (string title, string url) : base () { - Label label = new Label (title) { + Label label = new Label () { Ellipsize = Pango.EllipsizeMode.Middle, UseMarkup = true, + Markup = title, Xalign = 0 };