X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Fguiutil.cpp;h=090339b657b8079a5fe9ece4f9befaa6135e9b57;hb=ecfb608bb8dd6719b80d097ec4e2755cd373777f;hp=bf4c500d0a7094171a15f2caffebe88625873c90;hpb=e9aeca506d2513f375f229dc176b15151e06533f;p=novacoin.git diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index bf4c500..090339b 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -458,12 +458,13 @@ 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)); setDetailedText(coreOptions + "\n" + uiOptions); - //addButton("OK", QMessageBox::RejectRole); //кнопка OK будет справа от кнопки "Скрыть подробности" - addButton("OK", QMessageBox::NoRole); //кнопка OK будет слева от кнопки "Скрыть подробности" + addButton("OK", QMessageBox::RejectRole); //кнопка OK будет справа от кнопки "Скрыть подробности" + //addButton("OK", QMessageBox::NoRole); //кнопка OK будет слева от кнопки "Скрыть подробности" setMouseTracking(true); setSizeGripEnabled(true); }