// Include/Exclude buttons
QFrame* aBtnsFrame = new QFrame( myPolylineFrame );
QVBoxLayout* aBtnsLayout = new QVBoxLayout( aBtnsFrame );
- aBtnsLayout->setMargin( 5 );
+ aBtnsLayout->setMargin( 0 );
aBtnsLayout->setSpacing( 5 );
aBtnsFrame->setLayout( aBtnsLayout );
QPushButton* anAddBtn = new QPushButton( tr("INCLUDE"), aBtnsFrame );
aBtnsLayout->addStretch( 1 );
QGridLayout* aPolyLayout = new QGridLayout( myPolylineFrame );
- aPolyLayout->setMargin( 5 );
- aPolyLayout->setSpacing( 5 );
+ aPolyLayout->setMargin( 0 );
+ aPolyLayout->setSpacing( 10 );
aPolyLayout->addWidget( new QLabel( tr( "LAND_COVER_POLYLINES" ), myPolylineFrame ), 0, 0, 1, 2 );
aPolyLayout->addWidget( aBtnsFrame, 1, 0, 1, 1 );
aPolyLayout->addWidget( myPolylines, 1, 1, 1, 1 );