Skip to content

Commit

Permalink
JavaEditorBreadcrumb.java aktualisieren
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenartur authored Sep 30, 2024
1 parent fd13934 commit 81703a7
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,6 @@ protected void activateBreadcrumb() {
IEditorSite editorSite= getJavaEditor().getEditorSite();
IContextService contextService = editorSite.getService(IContextService.class);
contextService.activateContext("org.eclipse.jdt.ui.breadcrumbEditorScope"); //$NON-NLS-1$
// editorSite.getKeyBindingService().setScopes(new String[] { "org.eclipse.jdt.ui.breadcrumbEditorScope" }); //$NON-NLS-1$
getJavaEditor().setActionsActivated(false);
fBreadcrumbActionGroup.fillActionBars(editorSite.getActionBars());
}
Expand All @@ -584,7 +583,6 @@ protected void deactivateBreadcrumb() {
IEditorSite editorSite= getJavaEditor().getEditorSite();
IContextService contextService = editorSite.getService(IContextService.class);
contextService.activateContext("org.eclipse.jdt.ui.javaEditorScope"); //$NON-NLS-1$
// editorSite.getKeyBindingService().setScopes(new String[] { "org.eclipse.jdt.ui.javaEditorScope" }); //$NON-NLS-1$
getJavaEditor().getActionGroup().fillActionBars(editorSite.getActionBars());
getJavaEditor().setActionsActivated(true);
fEditorSelection= null;
Expand Down

0 comments on commit 81703a7

Please sign in to comment.