1
0
mirror of https://github.com/Melon-Bread/RetroUFO synced 2024-11-24 16:28:30 -05:00

Playing with form size to prevent word wrap

This commit is contained in:
Rain Clark 2019-03-06 01:06:30 -05:00
parent d1d4338bed
commit 290cda83a1

View File

@ -264,6 +264,7 @@ if __name__ == '__main__':
app = QApplication(sys.argv) app = QApplication(sys.argv)
# Create and show the form # Create and show the form
form = Form() form = Form()
form.setFixedWidth(438) # So all text on the log UI stays on one line
form.show() form.show()
# Run the main Qt loop # Run the main Qt loop
sys.exit(app.exec_()) sys.exit(app.exec_())