aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/playlistmodel.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-08-13 16:47:32 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-08-13 16:47:32 +0000
commitef99712682b1f35c6247d24685173e1d9d276922 (patch)
tree390158fc2c5f7c06c3aa49b08064cb8a8407dc1f /src/qmmpui/playlistmodel.cpp
parent14ff3ad8079147ef188270eb10631c0c2962435d (diff)
downloadqmmp-ef99712682b1f35c6247d24685173e1d9d276922.tar.gz
qmmp-ef99712682b1f35c6247d24685173e1d9d276922.tar.bz2
qmmp-ef99712682b1f35c6247d24685173e1d9d276922.zip
do not emit useless listChanged() signal
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3593 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistmodel.cpp')
-rw-r--r--src/qmmpui/playlistmodel.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/qmmpui/playlistmodel.cpp b/src/qmmpui/playlistmodel.cpp
index ab97fae0c..bcb4b739e 100644
--- a/src/qmmpui/playlistmodel.cpp
+++ b/src/qmmpui/playlistmodel.cpp
@@ -495,7 +495,11 @@ void PlayListModel::moveItems(int from, int to)
topmostInSelection(from) == INVALID_INDEX)
return;
- m_container.move(selected_indexes, from, to);
+ if(m_container.move(selected_indexes, from, to))
+ {
+ m_current = m_container.indexOf(m_current_track);
+ emit listChanged();
+ }
/*if (from > to)
foreach(int i, selected_indexes)
@@ -515,9 +519,6 @@ void PlayListModel::moveItems(int from, int to)
else
m_items.move(selected_indexes[i],selected_indexes[i] + to - from);
}*/
-
- m_current = m_container.indexOf(m_current_track);
- emit listChanged();
}
int PlayListModel::topmostInSelection(int row)