[gnome-music/wip/mschraal/grltracker-batch-initial-fill: 2/2] songliststore: Fix incorrect liststore addition
- From: Marinus Schraal <mschraal src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/mschraal/grltracker-batch-initial-fill: 2/2] songliststore: Fix incorrect liststore addition
- Date: Mon, 4 Nov 2019 13:22:07 +0000 (UTC)
commit e0d88b9d1489200cb71ea37a6b1586312a41ab8a
Author: Marinus Schraal <mschraal gnome org>
Date: Mon Nov 4 14:18:44 2019 +0100
songliststore: Fix incorrect liststore addition
Adding more than one item at a time resulted in the same item being
added multiple times. This was not noticed because all the additions
were single adds at a time. With batch additions however this became an
obvious bug.
Correct adding multiple items at a time to SongListStore.
gnomemusic/songliststore.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnomemusic/songliststore.py b/gnomemusic/songliststore.py
index df3c2587..05c310c8 100644
--- a/gnomemusic/songliststore.py
+++ b/gnomemusic/songliststore.py
@@ -61,10 +61,10 @@ class SongListStore(Gtk.ListStore):
if added > 0:
for i in list(range(added)):
- coresong = model[position]
+ coresong = model[position + i]
time = utils.seconds_to_string(coresong.props.duration)
self.insert_with_valuesv(
- position, [2, 3, 4, 5, 6, 7],
+ position + i, [2, 3, 4, 5, 6, 7],
[coresong.props.title, coresong.props.artist,
coresong.props.album, time,
int(coresong.props.favorite), coresong])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]