From c6cdd9b117a9ecf1f134eb1739c721e4b8d8e393 Mon Sep 17 00:00:00 2001 From: ouv Date: Fri, 20 Sep 2013 15:32:39 +0000 Subject: [PATCH] Few GUI modifications related to the Create Polyline functionality. --- src/CurveCreator/CurveCreator_Widget.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/CurveCreator/CurveCreator_Widget.cxx b/src/CurveCreator/CurveCreator_Widget.cxx index 132857ca0..f75c02835 100644 --- a/src/CurveCreator/CurveCreator_Widget.cxx +++ b/src/CurveCreator/CurveCreator_Widget.cxx @@ -176,10 +176,14 @@ CurveCreator_Widget::CurveCreator_Widget(QWidget* parent, connect( anAct, SIGNAL(triggered()), this, SLOT(onJoinAll()) ); QVBoxLayout* aSectLayout = new QVBoxLayout(); + aSectLayout->setMargin( 5 ); + aSectLayout->setSpacing( 5 ); aSectLayout->addWidget(aTB); aSectLayout->addWidget(mySectionView); aSectionGroup->setLayout(aSectLayout); QVBoxLayout* aLay = new QVBoxLayout(); + aLay->setMargin( 0 ); + aLay->setSpacing( 5 ); // aLay->addLayout(aNameLayout); aLay->addWidget(aSectionGroup); setLayout(aLay); -- 2.39.2