Skip to content

Commit

Permalink
Clarified text for option to disable contributed generators in sdf-ed…
Browse files Browse the repository at this point in the history
…itor

solves bug 3285
  • Loading branch information
goglepox committed Sep 6, 2012
1 parent 0387207 commit 6c6b126
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -100,13 +100,13 @@ private void createControl(Composite parent) {

final Button generatorButton = new Button(parent, SWT.CHECK);
generatorButton.setLayoutData( new GridData(SWT.FILL,SWT.BOTTOM,true,false) );
generatorButton.setText( "Use external generators" );
generatorButton.setSelection( useGenerators);
generatorButton.setText( "Disable visualization ( eg. Metaprint2D, DS)" );
generatorButton.setSelection( !useGenerators);

generatorButton.addSelectionListener( new SelectionAdapter() {
@Override
public void widgetSelected( SelectionEvent e ) {
useGenerators = generatorButton.getSelection();
useGenerators = !generatorButton.getSelection();
}
});

Expand Down

0 comments on commit 6c6b126

Please sign in to comment.