#2657 Better initial position of Ensemble curve color legend. Use preferred size

This commit is contained in:
Jacob Støren
2018-04-20 16:58:00 +02:00
parent 3957027b4b
commit 72fc66f827
2 changed files with 9 additions and 2 deletions

View File

@@ -33,7 +33,11 @@
RiuCvfOverlayItemWidget::RiuCvfOverlayItemWidget(QWidget* parent/*=0*/)
: QWidget(parent)
{
this->setLayout(new QHBoxLayout(this));
auto hblayout = new QHBoxLayout(this);
hblayout->setMargin(0);
hblayout->setSpacing(0);
this->setLayout(hblayout);
m_overlayItemLabel = new QLabel(this);
this->layout()->addWidget(m_overlayItemLabel);
}