Skip to content

Commit

Permalink
[GUI][Bug] Fix max decimals in sendcustomfeedialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Liquid369 committed Apr 17, 2020
1 parent d774276 commit 88efc96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qt/dogecash/sendcustomfeedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ SendCustomFeeDialog::SendCustomFeeDialog(QWidget *parent) :

// Custom
setCssProperty(ui->labelCustomFee, "label-subtitle-dialog");
ui->lineEditCustomFee->setPlaceholderText("0.000001 DOGEC");
ui->lineEditCustomFee->setPlaceholderText("0.000001");
initCssEditLine(ui->lineEditCustomFee, true);
GUIUtil::setupAmountWidget(ui->lineEditCustomFee, this);

// Buttons
setCssProperty(ui->btnEsc, "ic-close");
Expand Down

0 comments on commit 88efc96

Please sign in to comment.