From f7d9c62afb29961b03779d9a7c7a9c9f40e1d23c Mon Sep 17 00:00:00 2001 From: Khopa Date: Mon, 25 May 2020 01:22:20 +0200 Subject: [PATCH] Updated mission launch instructions. --- .../windows/QWaitingForMissionResultWindow.py | 27 ++++++++++++++----- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/qt_ui/windows/QWaitingForMissionResultWindow.py b/qt_ui/windows/QWaitingForMissionResultWindow.py index 4af0c9c3..047a794b 100644 --- a/qt_ui/windows/QWaitingForMissionResultWindow.py +++ b/qt_ui/windows/QWaitingForMissionResultWindow.py @@ -45,18 +45,31 @@ class QWaitingForMissionResultWindow(QDialog): def initUi(self): self.layout = QGridLayout() - self.gridLayout = QGridLayout() - self.gridLayout.addWidget(QLabel("You are clear for takeoff !"),0,0) - self.gridLayout.addWidget(QLabel("In DCS open and start playing the mission : "),1,0) - self.gridLayout.addWidget(QLabel("liberation_nextturn"),2,0) - self.gridLayout.addWidget(QLabel("or"),3,0) - self.gridLayout.addWidget(QLabel("liberation_nextturn_quick"),4,0) + self.gridLayout = QVBoxLayout() + self.gridLayout.addWidget(QLabel("You are clear for takeoff")) + self.gridLayout.addWidget(QLabel("")) + self.gridLayout.addWidget(QLabel("

For Singleplayer :

")) + self.gridLayout.addWidget(QLabel("In DCS, open the Mission Editor, and load the file : ")) + self.gridLayout.addWidget(QLabel("liberation_nextturn")) + self.gridLayout.addWidget(QLabel("Then once the mission is loaded in ME, in menu \"Flight\", click on FLY to launch")) + self.gridLayout.addWidget(QLabel("")) + self.gridLayout.addWidget(QLabel("

For Multiplayer

")) + self.gridLayout.addWidget(QLabel("In DCS, open the Mission Editor, and load the file : ")) + self.gridLayout.addWidget(QLabel("liberation_nextturn")) + self.gridLayout.addWidget(QLabel("Click on File/Save. Then exit the mission editor, and go to Multiplayer.")) + self.gridLayout.addWidget(QLabel("Then host a server with the mission, and tell your friends to join !")) + self.gridLayout.addWidget(QLabel("(The step in the mission editor is important, and fix a game breaking bug.)")) + self.gridLayout.addWidget(QLabel("")) progress = QLabel("") progress.setAlignment(QtCore.Qt.AlignCenter) progressBar = QMovie("./resources/ui/loader.gif") progress.setMovie(progressBar) - self.gridLayout.addWidget(progress,5,0) + self.gridLayout.addWidget(progress) + self.gridLayout.addWidget(QLabel("")) + self.gridLayout.addWidget(QLabel("Once you have played the mission, this window will dissapear.")) + self.gridLayout.addWidget(QLabel("You will have to click on \"Accept Results\" to proceed")) + progressBar.start() self.layout.addLayout(self.gridLayout,0,0) self.setLayout(self.layout)