Fix spacing in the layout of the MultiFilter

default is 8, setted to zero.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-10-31 15:46:58 -02:00 committed by Dirk Hohndel
parent c47972a189
commit ff669362fb

View file

@ -484,7 +484,8 @@ MultiFilter::MultiFilter(QWidget *parent): QScrollArea(parent)
QHBoxLayout *l = new QHBoxLayout();
l->addWidget(new TagFilter());
l->setContentsMargins(0,0,0,0);
l->setSpacing(1);
w->setLayout(l);
w->setMinimumSize(l->count() * 150, 200);
setWidget(w);