vote up 1 vote down star

I'm trying to have a view open programatically at the end of an eclipse ILaunchConfigurationDelegate. Currently I'm getting an "invalid thread access" error when I try to call showView(). How do I open a view from the launcher?

flag

1 Answer

vote up 3 vote down check

Try wrapping your call like this;

Display.getDefault().asyncExec(new Runnable() {
  public void run() {
    // Your code goes here
  }
});

This will put it on the Display thread and should fix the errors your seeing.

link|flag
Thanks! That held me up for a week. – Paul Johnson Jun 14 at 0:42
Glad to help :-) – Topher Fangio Jun 15 at 14:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.