From deb35230eb8ded52e9450cf1cc0aa218c62b9e02 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 8 Nov 2020 15:38:39 +0100 Subject: plugin: more pyqt5 port fixes --- nephilim/plugin.py | 5 +++-- nephilim/plugins/AlbumCover.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nephilim/plugin.py b/nephilim/plugin.py index 6760868..f0ce498 100644 --- a/nephilim/plugin.py +++ b/nephilim/plugin.py @@ -104,8 +104,9 @@ class Plugin(QtCore.QObject): def _add_widget(self, widget, label = '', tooltip = ''): """adds a widget with label""" - if not self.layout(): - self.logger.error('Attempted to call add_widget with no layout set.') + if self.layout() is None: + raise ValueError('Attempted to call add_widget with no layout set.') + widget.setToolTip(tooltip) layout = QtWidgets.QHBoxLayout() layout.addWidget(QtWidgets.QLabel(label)) diff --git a/nephilim/plugins/AlbumCover.py b/nephilim/plugins/AlbumCover.py index c576c56..ea34b4b 100644 --- a/nephilim/plugins/AlbumCover.py +++ b/nephilim/plugins/AlbumCover.py @@ -181,7 +181,7 @@ class AlbumCover(Plugin): # sites list fetchers = self.settings.value('fetchers') self.fetcherlist = QtWidgets.QListWidget(self) - self.fetcherlist.setDragDropMode(QtGui.QAbstractItemView.InternalMove) + self.fetcherlist.setDragDropMode(QtWidgets.QAbstractItemView.InternalMove) for site in fetchers: it = QtWidgets.QListWidgetItem(site) it.setCheckState(QtCore.Qt.Checked) -- cgit v1.2.3