Use less alarming fee warning note (#3038)

This commit is contained in:
UdjinM6 2019-08-01 17:50:42 +03:00 committed by GitHub
parent 02f6188e8f
commit 8d89350b8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -771,7 +771,7 @@
</font>
</property>
<property name="text">
<string>Warning: Fee estimation is currently not possible.</string>
<string>Note: Not enough data for fee estimation, using the fallback fee instead.</string>
</property>
<property name="wordWrap">
<bool>false</bool>

View File

@ -750,9 +750,6 @@ void SendCoinsDialog::updateSmartFeeLabel()
ui->labelSmartFee2->show(); // (Smart fee not initialized yet. This usually takes a few blocks...)
ui->labelFeeEstimation->setText("");
ui->fallbackFeeWarningLabel->setVisible(true);
int lightness = ui->fallbackFeeWarningLabel->palette().color(QPalette::WindowText).lightness();
QColor warning_colour(255 - (lightness / 5), 176 - (lightness / 3), 48 - (lightness / 14));
ui->fallbackFeeWarningLabel->setStyleSheet("QLabel { color: " + warning_colour.name() + "; }");
ui->fallbackFeeWarningLabel->setIndent(QFontMetrics(ui->fallbackFeeWarningLabel->font()).width("x"));
}
else