[banshee] [Audiobook] Make title label bold
- From: Gabriel Burt <gburt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] [Audiobook] Make title label bold
- Date: Thu, 2 Sep 2010 19:29:40 +0000 (UTC)
commit 83d5615cd29038f22dc1569d454f9a9179dbbe19
Author: Gabriel Burt <gabriel burt gmail com>
Date: Thu Sep 2 14:29:18 2010 -0500
[Audiobook] Make title label bold
.../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 4172106..264dfe1 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]