25 """ |
25 """ |
26 def __init__(self): |
26 def __init__(self): |
27 """ |
27 """ |
28 Constructor |
28 Constructor |
29 """ |
29 """ |
30 super(NotificationsPage, self).__init__() |
30 super().__init__() |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 self.setObjectName("NotificationsPage") |
32 self.setObjectName("NotificationsPage") |
33 |
33 |
34 geom = QApplication.screens()[0].availableVirtualGeometry() |
34 geom = QApplication.screens()[0].availableVirtualGeometry() |
35 self.xSpinBox.setMinimum(geom.x()) |
35 self.xSpinBox.setMinimum(geom.x()) |