Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
firstcryptoman committed Feb 14, 2022
1 parent cdd8fab commit f2db98d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/qt/transactionview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
headerLayout->addWidget(watchOnlyWidget);

instantsendWidget = new QComboBox(this);
if (platformStyle->getUseExtraSpacing()) {
instantsendWidget->setFixedWidth(121);
} else {
instantsendWidget->setFixedWidth(120);
}
instantsendWidget->setFixedWidth(24);
instantsendWidget->addItem(tr("All"), TransactionFilterProxy::InstantSendFilter_All);
instantsendWidget->addItem(tr("Locked by InstantSend"), TransactionFilterProxy::InstantSendFilter_Yes);
instantsendWidget->addItem(tr("Not locked by InstantSend"), TransactionFilterProxy::InstantSendFilter_No);
Expand Down

0 comments on commit f2db98d

Please sign in to comment.