I'm making a QMessageBox and was having trouble centering the text and the buttons in the pop up window.
This is the code that I have for the message box:
def update_msgbox(self):
self.msg = QMessageBox(self.centralwidget)
self.msg.setWindowTitle(" Software Update")
self.msg.setText("A software update is available. \nDo you want to update now?")
self.msg.setStandardButtons(QMessageBox.Ok | QMessageBox.Cancel)
self.msg.setStyleSheet("QLabel{min-width: 200px;}")
self.msg.exec_()
and this is the way the popup window currently looks:
Is there a way to center the text and to center the buttons?
A possible solution is to remove (or delete if necessary) the elements and add them back to the layout: