Skip to content

Commit

Permalink
export settings UI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mharj committed Oct 23, 2012
1 parent eec2691 commit 2520c0d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,10 +537,11 @@ Options::Options()
tab->addTab( exportPage = new GroupBox(Qt::Vertical), tr("Export"));
{
cfg.beginGroup( "Export Settings" );
exportCull = new QCheckBox("Use 'Cull Nodes by Name' rendering option to cull nodes on export", exportPage);
exportPage->pushLayout( tr("Export Settings"), Qt::Vertical, 1 );
exportPage->addWidget( exportCull = new QCheckBox( tr("Use 'Cull Nodes by Name' rendering option to cull nodes on export") ),1,Qt::AlignTop);
exportCull->setChecked( cfg.value("export_culling",false).toBool() );
exportCull->setMinimumSize ( QSize( 500, 15 ) );
connect( exportCull, SIGNAL( toggled( bool ) ), this, SIGNAL( sigChanged() ) );
exportPage->popLayout();
cfg.endGroup();
}

Expand Down

0 comments on commit 2520c0d

Please sign in to comment.