mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Limit task type combo box to valid mission types.
This commit is contained in:
@@ -36,8 +36,9 @@ class QFlightCreator(QDialog):
|
||||
|
||||
layout = QVBoxLayout()
|
||||
|
||||
# TODO: Limit task selection to those valid for the target type.
|
||||
self.task_selector = QFlightTypeComboBox()
|
||||
self.task_selector = QFlightTypeComboBox(
|
||||
self.game.theater, self.package.target
|
||||
)
|
||||
self.task_selector.setCurrentIndex(0)
|
||||
layout.addLayout(QLabeledWidget("Task:", self.task_selector))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user