diff options
| author | Luke Dashjr <[email protected]> | 2016-02-03 05:38:27 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2016-02-03 05:38:51 +0000 |
| commit | 027fdb83b41ae9e9125cf61f6460c03ab34e5961 (patch) | |
| tree | 4f7ac912c5344c1361cda2046e453e5b69f344fc /src/qt/utilitydialog.cpp | |
| parent | Rewrite FormatParagraph to handle newlines within input strings correctly (diff) | |
| download | discoin-027fdb83b41ae9e9125cf61f6460c03ab34e5961.tar.xz discoin-027fdb83b41ae9e9125cf61f6460c03ab34e5961.zip | |
When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen
Diffstat (limited to 'src/qt/utilitydialog.cpp')
| -rw-r--r-- | src/qt/utilitydialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 3e96f26b3..5fafa5759 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -56,7 +56,7 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, bool about) : uri.setMinimal(true); // use non-greedy matching licenseInfoHTML.replace(uri, "<a href=\"\\1\">\\1</a>"); // Replace newlines with HTML breaks - licenseInfoHTML.replace("\n\n", "<br><br>"); + licenseInfoHTML.replace("\n", "<br>"); ui->aboutMessage->setTextFormat(Qt::RichText); ui->scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); |