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)