--- a/eric6/E5Gui/E5PassivePopup.py Sat Sep 21 13:37:58 2019 +0200 +++ b/eric6/E5Gui/E5PassivePopup.py Sat Sep 21 15:37:43 2019 +0200 @@ -191,8 +191,8 @@ h = self.minimumSizeHint().height() if qVersionTuple() >= (5, 10, 0): - r = QApplication.screenAt(QPoint(x + w // 2, y + h // 2))\ - .geometry() + r = (QApplication.screenAt(QPoint(x + w // 2, y + h // 2)) + .geometry()) else: r = QApplication.desktop().screenGeometry( QPoint(x + w // 2, y + h // 2))