Fix cropped input fields

Many input fields are being cut off on the right side. This fixes the recurring visual bug
This commit is contained in:
andeon 2022-06-05 20:17:06 -03:00 committed by manongjohn
parent 709aabdbf4
commit d52d1f1731

View file

@ -128,7 +128,7 @@ void RollerField::removeValue(bool isDragging) {
IntLineEdit::IntLineEdit(QWidget *parent, int value, int minValue, int maxValue,
int showedDigits)
: LineEdit(parent), m_showedDigits(showedDigits) {
setFixedWidth(54);
setFixedWidth(40);
m_validator = new QIntValidator(this);
setValue(value);