Skip to content

Commit

Permalink
[gui] change mined icon and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hardwarewise committed Oct 11, 2021
1 parent f6ae868 commit 3802ce1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified src/qt/res/icons/tx_mined.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/qt/transactiontablemodel.cpp
Expand Up @@ -412,7 +412,7 @@ QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx
case TransactionRecord::Generated:
return platformStyle->TableColorIcon(":/icons/tx_mined", PlatformStyle::Input);
case TransactionRecord::DINReward:
return platformStyle->TableColorIcon(":/icons/tx_mined", PlatformStyle::Input);
return platformStyle->TableColorIcon(":/styles/theme2/app-icons/masternodes", PlatformStyle::Input);
case TransactionRecord::RecvWithAddress:
case TransactionRecord::RecvFromOther:
return platformStyle->TableColorIcon(":/icons/receive_from", PlatformStyle::Input);
Expand Down
2 changes: 1 addition & 1 deletion src/qt/transactionview.cpp
Expand Up @@ -79,7 +79,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf));
typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated));
typeWidget->addItem(tr("Minted"), TransactionFilterProxy::TYPE(TransactionRecord::Minted));
typeWidget->addItem(tr("DIN Reward"), TransactionFilterProxy::TYPE(TransactionRecord::DINReward));
typeWidget->addItem(tr("DIN reward"), TransactionFilterProxy::TYPE(TransactionRecord::DINReward));
typeWidget->addItem(tr("Burn for service"), TransactionFilterProxy::TYPE(TransactionRecord::Burn));
typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other));

Expand Down

0 comments on commit 3802ce1

Please sign in to comment.