Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » gap before the Search menu
gap before the Search menu [message #1046880] Mon, 22 April 2013 09:46 Go to next message
Eclipse UserFriend
Hello,
I have a small RCP Application based on eclipse-rcp-indigo-SR2. My problem is that there is a gap between the Search menu and the menu in front of it. See the attached screenshot for clarification.

What plugin is responsible for that gap and how can I remove it.

Best regards,
Dan.
  • Attachment: gap.PNG
    (Size: 8.59KB, Downloaded 208 times)
Re: gap before the Search menu [message #1097240 is a reply to message #1046880] Thu, 29 August 2013 08:29 Go to previous message
Eclipse UserFriend
add the navigate path in your ActionBarAdvisor implementation:

@Override
protected void fillMenuBar(IMenuManager menuBar) {

        menuBar.add(createFileMenu());
        menuBar.add(createEditMenu());

        menuBar.add(new GroupMarker(IWorkbenchActionConstants.M_NAVIGATE)); //<--- Important

        menuBar.add(new GroupMarker(IWorkbenchActionConstants.MB_ADDITIONS));
        menuBar.add(createWindowMenu());
        menuBar.add(createHelpMenu());

}
Previous Topic:PartName of background ViewPart does not reflect language change
Next Topic:Create your enterprise applications with JBizMo
Goto Forum:
  


Current Time: Wed Mar 19 06:26:53 EDT 2025

Powered by FUDForum. Page generated in 0.04260 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top