From 78b5fe23f5018dedbd3a342fb7d7324d9783fffa Mon Sep 17 00:00:00 2001 From: zathras-crypto Date: Mon, 13 Apr 2015 20:04:00 -0700 Subject: [PATCH] txhistorydialog : add missing formatting case --- src/qt/txhistorydialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/txhistorydialog.cpp b/src/qt/txhistorydialog.cpp index 9bf6ffabf0d6a..cd5d28cf9dd73 100644 --- a/src/qt/txhistorydialog.cpp +++ b/src/qt/txhistorydialog.cpp @@ -568,6 +568,7 @@ void TXHistoryDialog::showDetails() if (!strTXText.empty()) { strTXText = ReplaceStr(",",",\n ",strTXText); strTXText = ReplaceStr(":"," : ",strTXText); + strTXText = ReplaceStr("{","{\n ",strTXText); strTXText = ReplaceStr("}","\n}",strTXText); strTXText = ReplaceStr("[","[\n",strTXText); PopulateSimpleDialog(strTXText, "Transaction Information", "Transaction Information");