Skip to content

Commit

Permalink
width fix (#1111)
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto authored Dec 25, 2021
1 parent 738308b commit c1a6a97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/transactionview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ void TransactionView::updateHeaderSizes(int logicalIndex, int oldSize, int newSi
{TransactionTableModel::Amount, amountWidget}
};

if(logicalIndex < TransactionTableModel::ToAddress)
if(logicalIndex <= TransactionTableModel::ToAddress)
return;

for(std::pair<int, QWidget*> const & p : headerWidgets) {
Expand Down

0 comments on commit c1a6a97

Please sign in to comment.