X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Fguiutil.cpp;fp=src%2Fqt%2Fguiutil.cpp;h=bf4c500d0a7094171a15f2caffebe88625873c90;hb=e9aeca506d2513f375f229dc176b15151e06533f;hp=6fdc5c972516793e0e7caa5051fdd1be0535615f;hpb=29fb6d5ed06009472aeef317ff088974b0d281aa;p=novacoin.git diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 6fdc5c9..bf4c500 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -462,6 +462,10 @@ HelpMessageBox::HelpMessageBox(QWidget *parent) : // 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 будет слева от кнопки "Скрыть подробности" + setMouseTracking(true); + setSizeGripEnabled(true); } void HelpMessageBox::printToConsole()