mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Eliminate useless padding
This commit is contained in:
parent
8fe2308b34
commit
3913c387c9
1 changed files with 5 additions and 1 deletions
|
@ -23,8 +23,10 @@ TransactionView::TransactionView(QWidget *parent) :
|
|||
transactionView(0)
|
||||
{
|
||||
// Build filter row
|
||||
setContentsMargins(0,0,0,0);
|
||||
|
||||
QHBoxLayout *hlayout = new QHBoxLayout();
|
||||
hlayout->setContentsMargins(QMargins(0,0,0,0));
|
||||
hlayout->setContentsMargins(0,0,0,0);
|
||||
hlayout->setSpacing(0);
|
||||
|
||||
hlayout->addSpacing(23);
|
||||
|
@ -72,6 +74,8 @@ TransactionView::TransactionView(QWidget *parent) :
|
|||
hlayout->addWidget(amountWidget);
|
||||
|
||||
QVBoxLayout *vlayout = new QVBoxLayout(this);
|
||||
vlayout->setContentsMargins(0,0,0,0);
|
||||
vlayout->setSpacing(0);
|
||||
|
||||
QTableView *view = new QTableView(this);
|
||||
vlayout->addLayout(hlayout);
|
||||
|
|
Loading…
Reference in a new issue