From 922a514a958d9d1b12a3c50cdd0aee03fa9217ed Mon Sep 17 00:00:00 2001 From: Nathan Marley Date: Tue, 22 Oct 2019 11:33:12 -0300 Subject: [PATCH] Remove image entirely from About modal --- src/Makefile.qt.include | 2 -- src/qt/dash.qrc | 2 -- src/qt/forms/helpmessagedialog.ui | 40 ------------------------------- src/qt/utilitydialog.cpp | 5 ---- 4 files changed, 49 deletions(-) diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index bca40698fe..628068bc22 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -231,7 +231,6 @@ RES_ICONS = \ qt/res/icons/tx_input.png \ qt/res/icons/tx_output.png \ qt/res/icons/tx_mined.png \ - qt/res/icons/about.png \ qt/res/icons/about_qt.png \ qt/res/icons/verify.png \ qt/res/icons/fontbigger.png \ @@ -305,7 +304,6 @@ BITCOIN_QT_CPP += $(BITCOIN_QT_WALLET_CPP) endif RES_IMAGES = \ - qt/res/images/about.png \ qt/res/images/arrow_down.png \ qt/res/images/arrow_down_small.png \ qt/res/images/arrow_left_small.png \ diff --git a/src/qt/dash.qrc b/src/qt/dash.qrc index b927c51fcb..80c2097e6b 100644 --- a/src/qt/dash.qrc +++ b/src/qt/dash.qrc @@ -46,7 +46,6 @@ res/icons/filesave.png res/icons/debugwindow.png res/icons/browse.png - res/icons/about.png res/icons/about_qt.png res/icons/verify.png res/icons/hd_enabled.png @@ -62,7 +61,6 @@ res/css/trad.css - res/images/about.png res/images/arrow_down.png res/images/arrow_down_small.png res/images/arrow_left_small.png diff --git a/src/qt/forms/helpmessagedialog.ui b/src/qt/forms/helpmessagedialog.ui index eb16c64d8f..971afd146c 100644 --- a/src/qt/forms/helpmessagedialog.ui +++ b/src/qt/forms/helpmessagedialog.ui @@ -43,46 +43,6 @@ 0 - - - - - 0 - 0 - - - - - 96 - 464 - - - - - 96 - 564 - - - - - 96 - 564 - - - - false - - - :/images/about - - - false - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index a741830c04..069d8185a4 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -130,7 +130,6 @@ HelpMessageDialog::HelpMessageDialog(QWidget *parent, HelpMode helpMode) : ui->helpMessage->moveCursor(QTextCursor::Start); ui->scrollArea->setVisible(false); - ui->aboutLogo->setVisible(false); } else if (helpMode == pshelp) { setWindowTitle(tr("PrivateSend information")); @@ -165,11 +164,7 @@ For more information, see the aboutMessage->setWordWrap(true); ui->helpMessage->setVisible(false); - ui->aboutLogo->setVisible(false); } - QString helpMessageGfx = ":/images/about"; - QPixmap pixmap = QPixmap(helpMessageGfx); - ui->aboutLogo->setPixmap(pixmap); } HelpMessageDialog::~HelpMessageDialog()