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 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nephilim/plugin.py') 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)) -- cgit v1.2.3