From 5e5aacfc7174aba9adfbd32238a5756b717e3490 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 23 Apr 2011 16:17:21 +0100 Subject: Add "Album Artist" field to the list of potential fields to edit Quoth Daniel (Random Mister): "I just found an extended patch which also includes support for the album-artist tag in the fill tags dialog. It is an update of the other, so if you only add this one to the git tree it should work. I've been using it for over half a year without bugs, so I think it can be merged into the Git tree." Written-By: Daniel --- src/setting.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/setting.c') diff --git a/src/setting.c b/src/setting.c index 6e67d84..8a368d9 100644 --- a/src/setting.c +++ b/src/setting.c @@ -204,6 +204,7 @@ tConfigVariable Config_Variables[] = {"process_filename_field", CV_TYPE_BOOL, &PROCESS_FILENAME_FIELD }, {"process_title_field", CV_TYPE_BOOL, &PROCESS_TITLE_FIELD }, {"process_artist_field", CV_TYPE_BOOL, &PROCESS_ARTIST_FIELD }, + {"process_album_artist_field", CV_TYPE_BOOL, &PROCESS_ALBUM_ARTIST_FIELD }, {"process_album_field", CV_TYPE_BOOL, &PROCESS_ALBUM_FIELD }, {"process_genre_field", CV_TYPE_BOOL, &PROCESS_GENRE_FIELD }, {"process_comment_field", CV_TYPE_BOOL, &PROCESS_COMMENT_FIELD }, @@ -477,6 +478,7 @@ void Init_Config_Variables (void) PROCESS_FILENAME_FIELD = 0; PROCESS_TITLE_FIELD = 1; PROCESS_ARTIST_FIELD = 1; + PROCESS_ALBUM_ARTIST_FIELD = 1; PROCESS_ALBUM_FIELD = 1; PROCESS_GENRE_FIELD = 1; PROCESS_COMMENT_FIELD = 1; -- cgit v1.2.3