Fri, 05 Apr 2019 18:59:36 +0200
Fixed some code style issues.
E5Gui/E5PassivePopup.py | file | annotate | diff | comparison | revisions | |
Snapshot/SnapshotTimer.py | file | annotate | diff | comparison | revisions |
--- a/E5Gui/E5PassivePopup.py Thu Apr 04 19:04:50 2019 +0200 +++ b/E5Gui/E5PassivePopup.py Fri Apr 05 18:59:36 2019 +0200 @@ -15,6 +15,7 @@ from Globals import qVersionTuple + class E5PassivePopup(QFrame): """ Class implementing dialog-like popup that displays messages without @@ -192,7 +193,7 @@ if qVersionTuple() >= (5, 10, 0): r = QApplication.screenAt(QPoint(x + w // 2, y + h // 2))\ - .geometry() + .geometry() else: r = QApplication.desktop().screenGeometry( QPoint(x + w // 2, y + h // 2))