}
public void addSongsToLinks(){
int index = albums.getSelectedIndex();
if (configure.albums.isEmpty() || index >= configure.albums.size()) return;
final IAlbum currentPlaylist = configure.albums.get(index);
setTitle("Loading '" + currentPlaylist.getTitle() + "'...");
new Thread(){
public void run(){
try {
setSongs(currentPlaylist.getSongs(), true);
} catch (IOException e) {
setTitle(e.toString());
e.printStackTrace();
}
setTitle(configure.title);