diff --git a/python/mp_main_window.py b/python/mp_main_window.py
index 73fc7c325418e0087e2c49e39bced09b829456a0..6ad1f40dfc425339372848ff2ce93b82a6d6941b 100644
--- a/python/mp_main_window.py
+++ b/python/mp_main_window.py
@@ -1,5 +1,5 @@
 import traceback
-from PySide6.QtWidgets import QMainWindow, QMessageBox
+from PySide6.QtWidgets import QMainWindow
 from PySide6.QtCore import Slot
 from preferences import preferences
 
diff --git a/python/report_an_issue.py b/python/report_an_issue.py
index 6a3516774dfd042677cf1b2826df03709b39dc79..ddcc0fa5a7e3f0fea89dcf805557ff05f569a0c9 100644
--- a/python/report_an_issue.py
+++ b/python/report_an_issue.py
@@ -17,6 +17,7 @@ _text = 'To report an issue please open the Monterey Phoenix Gryphon ' \
 
 def report_an_issue(parent):
     mb = QMessageBox(parent)
+    mb.setWindowTitle("Report an Issue")
     mb.setTextFormat(Qt.RichText)
     mb.setText(_text)
     mb.setStandardButtons(QMessageBox.Ok)