make amount field the same width as decimals field
This commit is contained in:
parent
6e903b0b32
commit
2566b30c38
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ BitcoinAmountField::BitcoinAmountField(QWidget *parent):
|
|||
amount->setValidator(new QRegExpValidator(QRegExp("[0-9]*"), this));
|
||||
amount->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
|
||||
amount->installEventFilter(this);
|
||||
amount->setMaximumWidth(100);
|
||||
amount->setMaximumWidth(75);
|
||||
decimals = new QValidatedLineEdit(this);
|
||||
decimals->setValidator(new QRegExpValidator(QRegExp("[0-9]+"), this));
|
||||
decimals->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
|
||||
|
|
Loading…
Reference in a new issue