This commit is contained in:
craig
2012-01-25 17:40:55 +00:00
parent 9b56fd382a
commit 600cf451fa

View File

@@ -1630,8 +1630,8 @@ void MainWindow::copyTrackInfo()
foreach (const QModelIndex &idx, items) {
Song s = playQueueModel.getSongByRow(usingProxy ? playQueueProxyModel.mapToSource(idx).row() : idx.row());
if (s.isEmpty()) {
if (txt != "") {
txt += "\n";
if (!txt.isEmpty()) {
txt += QChar('\n');
}
txt += s.format();
}