Skip to content

Commit

Permalink
Make both delete and backspace work in the Bioclipse navigator.
Browse files Browse the repository at this point in the history
Solves bug 3273
  • Loading branch information
goglepox committed Sep 6, 2012
1 parent 6befc53 commit eadc22c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugins/net.bioclipse.ui/plugin.xml
Expand Up @@ -472,6 +472,14 @@
style="push"/>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="org.eclipse.ui.edit.delete"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="BACKSPACE">
</key>
</extension>



Expand Down
Expand Up @@ -208,6 +208,9 @@ protected void makeActions(IWorkbenchWindow window) {
register(helpSearchAction);
}


IWorkbenchAction deleteAction = ActionFactory.DELETE.create(window);
register(deleteAction);
}


Expand Down

0 comments on commit eadc22c

Please sign in to comment.