Increase Width of Configure Screen

This commit is contained in:
Debanjum Singh Solanky
2022-08-12 18:34:47 +03:00
parent 9baea9c9fd
commit 43301d488a
3 changed files with 3 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class LabelledTextField(QtWidgets.QWidget):
layout.addWidget(self.label)
self.input_field = QtWidgets.QTextEdit(self)
self.input_field.setFixedWidth(250)
self.input_field.setFixedWidth(410)
self.input_field.setFixedHeight(27)
self.input_field.setText(default_value)