[gnome-music/wip/mschraal/set-player-model-cleanups-3-34: 2/4] coremodel: Unify playlist-loaded signal
- From: Marinus Schraal <mschraal src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/mschraal/set-player-model-cleanups-3-34: 2/4] coremodel: Unify playlist-loaded signal
- Date: Sun, 3 Nov 2019 21:48:57 +0000 (UTC)
commit cad8d3b703aff4a16759334ff573f483e3dd8634
Author: Marinus Schraal <mschraal gnome org>
Date: Sun Nov 3 10:29:52 2019 +0100
coremodel: Unify playlist-loaded signal
gnomemusic/coremodel.py | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
---
diff --git a/gnomemusic/coremodel.py b/gnomemusic/coremodel.py
index bd74486e..d6ea0283 100644
--- a/gnomemusic/coremodel.py
+++ b/gnomemusic/coremodel.py
@@ -294,7 +294,6 @@ class CoreModel(GObject.GObject):
GObject.BindingFlags.BIDIRECTIONAL
| GObject.BindingFlags.SYNC_CREATE)
- self.emit("playlist-loaded", playlist_type)
elif playlist_type == PlayerPlaylist.Type.ARTIST:
proxy_model = Gio.ListStore.new(Gio.ListModel)
@@ -320,7 +319,6 @@ class CoreModel(GObject.GObject):
GObject.BindingFlags.BIDIRECTIONAL
| GObject.BindingFlags.SYNC_CREATE)
- self.emit("playlist-loaded", playlist_type)
elif playlist_type == PlayerPlaylist.Type.SONGS:
self._current_playlist_model = self._songliststore.props.model
@@ -330,14 +328,12 @@ class CoreModel(GObject.GObject):
if song.props.state == SongWidget.State.PLAYING:
song.props.state = SongWidget.State.PLAYED
- self.emit("playlist-loaded", playlist_type)
elif playlist_type == PlayerPlaylist.Type.SEARCH_RESULT:
self._current_playlist_model = self._song_search_flatten
for song in self._song_search_flatten:
self._playlist_model.append(song)
- self.emit("playlist-loaded", playlist_type)
elif playlist_type == PlayerPlaylist.Type.PLAYLIST:
self._current_playlist_model = model
@@ -356,13 +352,13 @@ class CoreModel(GObject.GObject):
GObject.BindingFlags.BIDIRECTIONAL
| GObject.BindingFlags.SYNC_CREATE)
- self.emit("playlist-loaded", playlist_type)
-
if self._current_playlist_model is not None:
self._player_signal_id = self._current_playlist_model.connect(
"items-changed", _on_items_changed)
self._previous_playlist_model = model
+ self.emit("playlist-loaded", playlist_type)
+
def stage_playlist_deletion(self, playlist):
"""Prepares playlist deletion.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]