From 114239fe8e486cf79b20eea65823a492888923cb Mon Sep 17 00:00:00 2001 From: Khopa Date: Wed, 12 Aug 2020 18:27:13 +0200 Subject: [PATCH] Default size for info panel & map changed --- qt_ui/windows/QLiberationWindow.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/qt_ui/windows/QLiberationWindow.py b/qt_ui/windows/QLiberationWindow.py index 74bd08a3..9e3cd242 100644 --- a/qt_ui/windows/QLiberationWindow.py +++ b/qt_ui/windows/QLiberationWindow.py @@ -54,6 +54,7 @@ class QLiberationWindow(QMainWindow): hbox = QSplitter(Qt.Horizontal) hbox.addWidget(self.info_panel) hbox.addWidget(self.liberation_map) + hbox.setSizes([2, 8]) vbox = QVBoxLayout() vbox.setMargin(0) @@ -212,13 +213,15 @@ class QLiberationWindow(QMainWindow): def showAboutDialog(self): text = "

DCS Liberation

" + \ - "

Repository

" + \ - "Source code : https://github.com/shdwp/dcs_liberation
" + \ - "

Authors/Contributors


" + \ - "shdwp, Khopa, Wrycu, calvinmorrow, JohanAberg Deus
" + \ + "Source code : https://github.com/khopa/dcs_liberation" + \ + "

Authors

" + \ + "

DCS Liberation was originally developed by shdwp, DCS Liberation 2.0 is a partial rewrite based on this work by Khopa." \ + "

Contributors

" + \ + "shdwp, Khopa, Wrycu, calvinmorrow, JohanAberg, Deus" + \ "

Special Thanks :

" \ "rp- for the pydcs framework
"\ - "Grimes (mrSkortch) & Speed for the MIST framework
" + "Grimes (mrSkortch) & Speed for the MIST framework
"\ + "Ciribob for the JTACAutoLase.lua script
" about = QMessageBox() about.setWindowTitle("About DCS Liberation")