[banshee] Leave the third line empty in NowPlaying when there's no album title



commit 87fceaa6d84d1bf4cf333c83dcd2845389fae950
Author: Andrés G. Aragoneses <aaragoneses novell com>
Date:   Sun Apr 26 20:41:00 2009 +0200

    Leave the third line empty in NowPlaying when there's no album title
    
    Fixes BGO #580237.
---
 .../Banshee.Gui.Widgets/LargeTrackInfoDisplay.cs   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/LargeTrackInfoDisplay.cs b/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/LargeTrackInfoDisplay.cs
index 98236a8..f8f3c15 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/LargeTrackInfoDisplay.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui.Widgets/LargeTrackInfoDisplay.cs
@@ -191,7 +191,7 @@ namespace Banshee.Gui.Widgets
             // FIXME: This is incredibly bad, but we don't want to break
             // translations right now. It needs to be replaced for 1.4!!
             string line = GetSecondLineText (track);
-            string second_line = line, third_line = line;
+            string second_line = line, third_line = String.Empty;
             int split_pos = line.LastIndexOf ("<span");
             if (split_pos >= 0
                 // Check that there are at least 3 spans in the string, else this



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]