Merge pull request #167 from fsb4000/Выравнивание
authorCryptoManiac <CryptoManiac@users.noreply.github.com>
Mon, 16 Feb 2015 11:07:07 +0000 (14:07 +0300)
committerCryptoManiac <CryptoManiac@users.noreply.github.com>
Mon, 16 Feb 2015 11:07:07 +0000 (14:07 +0300)
выравнивание текста в окне "Параметры командной строки"

src/init.cpp
src/qt/guiutil.cpp

index 395527e..22d345f 100644 (file)
@@ -274,7 +274,7 @@ std::string HelpMessage()
         "  -detachdb              " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" +
 
 #ifdef DB_LOG_IN_MEMORY
-        "  -memorylog              " + _("Use in-memory logging for block index database (default: 1)") + "\n" +
+        "  -memorylog             " + _("Use in-memory logging for block index database (default: 1)") + "\n" +
 #endif
 
         "  -paytxfee=<amt>        " + _("Fee per KB to add to transactions you send") + "\n" +
index da0ca3a..090339b 100644 (file)
@@ -458,6 +458,7 @@ HelpMessageBox::HelpMessageBox(QWidget *parent) :
         "  -splash                " + tr("Show splash screen on startup (default: 1)") + "\n";
 
     setWindowTitle(tr("NovaCoin-Qt"));
+    setFont(bitcoinAddressFont());
     setTextFormat(Qt::PlainText);
     // setMinimumWidth is ignored for QMessageBox so put in non-breaking spaces to make it wider.
     setText(header + QString(QChar(0x2003)).repeated(50));