--- a/src/eric7/Snapshot/SnapshotTimer.py Wed Dec 20 19:28:22 2023 +0100 +++ b/src/eric7/Snapshot/SnapshotTimer.py Thu Dec 21 12:03:40 2023 +0100 @@ -51,7 +51,8 @@ """ Public method to start the timer. - @param seconds timeout value (integer) + @param seconds timeout value + @type int """ screenGeom = QApplication.screens()[0].geometry() self.move(screenGeom.width() // 2 - self.size().width() // 2, screenGeom.top()) @@ -88,7 +89,8 @@ """ Protected method handling paint events. - @param evt paint event (QPaintEvent) + @param evt paint event + @type QPaintEvent """ painter = QPainter(self) @@ -125,7 +127,8 @@ """ Protected method handling the mouse cursor entering the widget. - @param evt enter event (QEvent) + @param evt enter event + @type QEvent """ screenGeom = QApplication.screens()[0].geometry() if self.x() == screenGeom.left():