Fix error box in flight creation.

This commit is contained in:
Dan Albert 2020-11-13 21:00:55 -08:00
parent 4cff838de0
commit a81254cd18

View File

@ -3,6 +3,7 @@ from typing import Optional
from PySide2.QtCore import Qt, Signal from PySide2.QtCore import Qt, Signal
from PySide2.QtWidgets import ( from PySide2.QtWidgets import (
QDialog, QDialog,
QMessageBox,
QPushButton, QPushButton,
QVBoxLayout, QVBoxLayout,
) )
@ -95,7 +96,8 @@ class QFlightCreator(QDialog):
def create_flight(self) -> None: def create_flight(self) -> None:
error = self.verify_form() error = self.verify_form()
if error is not None: if error is not None:
self.error_box("Could not create flight", error) QMessageBox.critical(self, "Could not create flight", error,
QMessageBox.Ok)
return return
task = self.task_selector.currentData() task = self.task_selector.currentData()