Please give a look at that. After the track list names are changed, it is now impossible to import CD. Because, the labels are different.
2) Also; I have an opinion to add to GUIMusicFiles.cs
OnShowContextMenu Method:
case 1100: // Import CD
if (g_Player.Playing && g_Player.isCDA)
g_Player.Stop(); // Hocus Pocus
OnAction(new Action(Action.ActionType.ACTION_IMPORT_DISC, 0, 0));
break;
case 1101: // Import seltected track
if (g_Player.Playing && g_Player.isCDA)
g_Player.Stop(); // Hocus Pocus
OnAction(new Action(Action.ActionType.ACTION_IMPORT_TRACK, 0, 0));
break;
Doing such a change can stop playback of CD to make import. Otherwise it seems like a bug. (I tried this but isCDA returns false. It didnt work. It needs a touch from heaven )