Explicitly trigger Project View to open via API
Hi,
I would like to open Project View from the plugin (equivalent to user press "cmd 1" in OSX), what would be the recommended method to call?
I've looked at `ProjectView`, but it does not seem to have what I want.
Thanks,
Yi
Please sign in to leave a comment.
ah the following didi it
ToolWindowManager.getInstance(myProject).getToolWindow("Project").show(new Runnable() {@Override
public void run() {
}
});