eric6/E5Gui/E5PassivePopup.py

changeset 7252
c5e3705073eb
parent 7229
53054eb5b15a
child 7360
9190402e4505
--- 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))

eric ide

mercurial