This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-50/automation/qt_common/qt_window_center.py

8 lines
192 B
Python

from PySide2 import QtWidgets
def center_window(w):
qr = w.frameGeometry()
cp = QtWidgets.QDesktopWidget().availableGeometry().center()
qr.moveCenter(cp)
w.move(qr.topLeft())