From 290cda83a1ccaf90e8a1c23bdbfa0f766f69bdb6 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Wed, 6 Mar 2019 01:06:30 -0500 Subject: [PATCH] Playing with form size to prevent word wrap --- RetroUFO_GUI.py | 1 + 1 file changed, 1 insertion(+) diff --git a/RetroUFO_GUI.py b/RetroUFO_GUI.py index 2eabd58..829eddc 100755 --- a/RetroUFO_GUI.py +++ b/RetroUFO_GUI.py @@ -264,6 +264,7 @@ if __name__ == '__main__': app = QApplication(sys.argv) # Create and show the form form = Form() + form.setFixedWidth(438) # So all text on the log UI stays on one line form.show() # Run the main Qt loop sys.exit(app.exec_())