Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » gap before the Search menu
gap before the Search menu [message #1046880] Mon, 22 April 2013 13:46 Go to next message
Dan Corneanu is currently offline Dan CorneanuFriend
Messages: 10
Registered: July 2009
Junior Member
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 187 times)
Re: gap before the Search menu [message #1097240 is a reply to message #1046880] Thu, 29 August 2013 12:29 Go to previous message
Wolfgang Geck is currently offline Wolfgang GeckFriend
Messages: 4
Registered: August 2012
Junior Member
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: Tue Mar 19 06:41:57 GMT 2024

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

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

Back to the top