fix time display

This commit is contained in:
David Kelly 2018-01-16 14:52:26 -08:00
parent d8f8f9ff1a
commit 929760c226

View file

@ -171,7 +171,7 @@ QString transactionString(const QJsonObject& valueObject) {
}
// no matter what we append a smaller date to the bottom of this...
result += QString("<br><font size='-2' color='#1080B8'>%1").arg(createdAt.toLocalTime().toString());
result += QString("<br><font size='-2' color='#1080B8'>%1").arg(createdAt.toLocalTime().toString(Qt::DefaultLocaleShortDate));
return result;
}