Skip to content

Commit

Permalink
switcher fix
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto committed Aug 12, 2023
1 parent aa843c6 commit 8582fa4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qt/transactionview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa
headerLayout->addWidget(watchOnlyWidget);

instantsendWidget = new QComboBox(this);
instantsendWidget->setFixedWidth(24);
instantsendWidget->setFixedWidth(150);
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
2 changes: 1 addition & 1 deletion src/qt/transactionview.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class TransactionView : public QWidget
};

enum ColumnWidths {
STATUS_COLUMN_WIDTH = 30,
STATUS_COLUMN_WIDTH = 170,
WATCHONLY_COLUMN_WIDTH = 23,
INSTANTSEND_COLUMN_WIDTH = 23,
DATE_COLUMN_WIDTH = 120,
Expand Down

0 comments on commit 8582fa4

Please sign in to comment.