diff options
author | Gabriel Burt <gabriel.burt@gmail.com> | 2010-09-02 14:29:18 -0500 |
---|---|---|
committer | Gabriel Burt <gabriel.burt@gmail.com> | 2010-09-02 14:29:18 -0500 |
commit | 83d5615cd29038f22dc1569d454f9a9179dbbe19 (patch) | |
tree | 9866c97b79b6438c43a9d535ff95d440b061c044 | |
parent | 268d0575bb41c24f96f5e7822d94d2d66f4fd9d9 (diff) |
[Audiobook] Make title label bold
-rw-r--r-- | src/Extensions/Banshee.Audiobook/Banshee.Audiobook/AudiobookLibrarySource.cs | 3 |
1 files changed, 2 insertions, 1 deletions
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<System.Action> ("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 ("<b>{0}</b>", GLib.Markup.EscapeText (this.Name)) }; + var b = new Gtk.Button (title_label) { Relief = Gtk.ReliefStyle.None }; b.Clicked += delegate { SwitchToGridView (); }; title_switcher.PackStart (b); |