Make the mission planning window non-modal.

Doesn't appear to be any need for this to be modal. Making it
non-modal allows interacting with the map during planning.
This commit is contained in:
Dan Albert 2020-08-28 12:53:31 -07:00
parent 7817d59989
commit d50e791c30

View File

@ -17,7 +17,6 @@ class QMissionPlanning(QDialog):
self.game = game
self.setWindowFlags(Qt.WindowStaysOnTopHint)
self.setMinimumSize(1000, 440)
self.setModal(True)
self.setWindowTitle("Mission Preparation")
self.setWindowIcon(EVENT_ICONS["strike"])
self.init_ui()