parent
d799efe214
commit
b0510d78ae
1 changed files with 5 additions and 1 deletions
|
@ -106,7 +106,11 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
|
||||||
} else {
|
} else {
|
||||||
amountWidget->setFixedWidth(100);
|
amountWidget->setFixedWidth(100);
|
||||||
}
|
}
|
||||||
amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this));
|
QDoubleValidator *amountValidator = new QDoubleValidator(0, 1e20, 8, this);
|
||||||
|
QLocale amountLocale(QLocale::C);
|
||||||
|
amountLocale.setNumberOptions(QLocale::RejectGroupSeparator);
|
||||||
|
amountValidator->setLocale(amountLocale);
|
||||||
|
amountWidget->setValidator(amountValidator);
|
||||||
hlayout->addWidget(amountWidget);
|
hlayout->addWidget(amountWidget);
|
||||||
|
|
||||||
// Delay before filtering transactions in ms
|
// Delay before filtering transactions in ms
|
||||||
|
|
Loading…
Reference in a new issue