Skip to content

Commit

Permalink
Changing the way Dynamic Help works in Studio.
Browse files Browse the repository at this point in the history
Signed-off-by: Natalia Bartol <[email protected]>
  • Loading branch information
Natalia Bartol committed Jun 11, 2014
1 parent c63ce04 commit 73dafd6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ public Composite createContent(Composite container,
if (helpContextId != null) {
text.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent selectionEvent) {
PlatformUI.getWorkbench().getHelpSystem()
.displayHelp(helpContextId);
public void widgetSelected(SelectionEvent selectionEvent) {
org.eclipse.swt.program.Program.launch(helpContextId);
}
});
}
Expand Down

0 comments on commit 73dafd6

Please sign in to comment.