qt: Make SendCoinsEntry aware of runtime palette change

This change fixes the GUI when changing appearance on macOS.
This commit is contained in:
Hennadii Stepanov
2021-04-08 12:31:16 +03:00
parent fa18d28e12
commit 0dcc3fac43
2 changed files with 16 additions and 0 deletions

View File

@@ -236,6 +236,19 @@ void SendCoinsEntry::updateDisplayUnit()
} }
} }
void SendCoinsEntry::changeEvent(QEvent* e)
{
#ifdef Q_OS_MACOS
if (e->type() == QEvent::PaletteChange) {
ui->addressBookButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/address-book")));
ui->pasteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/editpaste")));
ui->deleteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
ui->deleteButton_is->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
ui->deleteButton_s->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove")));
}
#endif
}
bool SendCoinsEntry::updateLabel(const QString &address) bool SendCoinsEntry::updateLabel(const QString &address)
{ {
if(!model) if(!model)

View File

@@ -69,6 +69,9 @@ private Q_SLOTS:
void on_pasteButton_clicked(); void on_pasteButton_clicked();
void updateDisplayUnit(); void updateDisplayUnit();
protected:
void changeEvent(QEvent* e) override;
private: private:
SendCoinsRecipient recipient; SendCoinsRecipient recipient;
Ui::SendCoinsEntry *ui; Ui::SendCoinsEntry *ui;