From 83d5615cd29038f22dc1569d454f9a9179dbbe19 Mon Sep 17 00:00:00 2001 From: Gabriel Burt Date: Thu, 2 Sep 2010 14:29:18 -0500 Subject: [Audiobook] Make title label bold --- .../Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs b/src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs index 4172106ab..264dfe138 100644 --- a/src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs +++ b/src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs @@ -107,7 +107,8 @@ namespace Banshee.Audiobook Properties.Set ("ActivationAction", delegate { SwitchToGridView (); }); title_switcher = new Gtk.HBox () { Spacing = 0 }; - var b = new Gtk.Button () { Label = this.Name, Relief = Gtk.ReliefStyle.None }; + var title_label = new Gtk.Label () { Markup = String.Format ("{0}", GLib.Markup.EscapeText (this.Name)) }; + var b = new Gtk.Button (title_label) { Relief = Gtk.ReliefStyle.None }; b.Clicked += delegate { SwitchToGridView (); }; title_switcher.PackStart (b); -- cgit v1.2.3