From 9a97c44d4ccf1f4a1093d3f54b84892f2ba952fa Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 20 May 2021 23:41:12 +0200 Subject: [PATCH] Wizard: Change date format for clarity --- src/wizard/PageSetRestoreHeight.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wizard/PageSetRestoreHeight.cpp b/src/wizard/PageSetRestoreHeight.cpp index bf28d06..8fdc07d 100644 --- a/src/wizard/PageSetRestoreHeight.cpp +++ b/src/wizard/PageSetRestoreHeight.cpp @@ -86,7 +86,7 @@ void PageSetRestoreHeight::onRestoreHeightEdited() { } void PageSetRestoreHeight::showScanWarning(const QDateTime &date) { - QString dateString = date.toString("yyyy-MM-dd"); + QString dateString = date.toString("MMMM dd, yyyy"); ui->label_scanWarning->setText(QString("Wallet will not scan for transactions before %1").arg(dateString)); ui->frame_scanWarning->show(); }