added missing return

This commit is contained in:
Martin Wagner 2020-12-13 13:44:25 +01:00
parent e6c292f658
commit b407f0466d

View File

@ -2050,10 +2050,11 @@ class AlbumWindow(FocusFrame):
self._settings.set_property("cursor-watch", True) self._settings.set_property("cursor-watch", True)
GLib.idle_add(self._store.clear) GLib.idle_add(self._store.clear)
self._iconview.set_model(None) self._iconview.set_model(None)
try: # self._artist_window could still be empty try: # self._artist_window can still be empty (e.g. when client is not connected and cover size gets changed)
genre, artists=self._artist_window.get_selected_artists() genre, artists=self._artist_window.get_selected_artists()
except: except:
GLib.idle_add(self._done_callback) GLib.idle_add(self._done_callback)
return
# show artist names if all albums are shown # show artist names if all albums are shown
if len(artists) > 1: if len(artists) > 1:
self._iconview.set_markup_column(2) self._iconview.set_markup_column(2)