Skip to content

Commit

Permalink
Read system property DS_COLLAPSE to decide to collapse ds properties
Browse files Browse the repository at this point in the history
  • Loading branch information
goglepox committed Nov 14, 2012
1 parent 0534b20 commit c9faf4a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -257,7 +257,7 @@ public void selectionChanged( SelectionChangedEvent event ) {
GeneratorHelper.turnOffAllExternalGenerators(jcp);

//Collapse propertyview after some ms of waiting
if (COLLAPSE_PROPERTIES_VIEW){
if(System.getProperty("DS_COLLAPSE","false").equalsIgnoreCase("true")){
Display.getDefault().timerExec(500, new Runnable() {
@Override
public void run() {
Expand Down

0 comments on commit c9faf4a

Please sign in to comment.