From: fsb4000 Date: Mon, 16 Feb 2015 03:37:48 +0000 (+0600) Subject: выравнивание текста в окне "Параметры командной строки" X-Git-Tag: nvc-v0.5.3~86^2 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=refs%2Fpull%2F167%2Fhead;p=novacoin.git выравнивание текста в окне "Параметры командной строки" --- diff --git a/src/init.cpp b/src/init.cpp index b1dec89..b168bb8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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= " + _("Fee per KB to add to transactions you send") + "\n" + diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index da0ca3a..090339b 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -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));