(self, *args, **kwargs)
| 300 | |
| 301 | class SecondaryWindow(QWidget): |
| 302 | def __init__(self, *args, **kwargs): |
| 303 | super().__init__(*args, **kwargs) |
| 304 | |
| 305 | # The variable indicates if the window was moved using 'position_once' function |
| 306 | self._never_positioned = True |
| 307 | |
| 308 | def position_once(self, x, y, *, x_shift=30, y_shift=30, force=False): |
| 309 | """ |