Skip to content
Snippets Groups Projects
Commit f020e4f3 authored by Allen, Bruce (CIV)'s avatar Allen, Bruce (CIV)
Browse files

add title to message popups

parent 7f8b9d06
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ from PySide6.QtWidgets import QMessageBox
def message_popup(parent, message):
"""Simple message box for simple popup warnings."""
mb = QMessageBox(parent)
mb.setWindowTitle("Gryphon Message")
mb.setText(message)
mb.exec()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment