gui: re-add by / from lines to current track

These were accidentally removed a few days ago.  Put them back!

Signed-off-by: Anna Schumaker <schumaker.anna@gmail.com>
This commit is contained in:
Anna Schumaker 2014-01-29 22:55:57 -05:00 committed by Anna Schumaker
parent 92f466c310
commit bf010f2a84
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ static void on_track_loaded(library :: Song &song)
builder->get_widget("o_total_time", duration);
set_label_text(title, "xx-large", song.track->title);
set_label_text(artist, "x-large", song.artist->primary_key);
set_label_text(album, "x-large", song.album->name);
set_label_text(artist, "x-large", "By: " + song.artist->primary_key);
set_label_text(album, "x-large", "From: " + song.album->name);
duration->set_text(song.track->length_str);
}