Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-devel] Another build of RC13

Ok you guilt tripped me into it.  I've fixed the menus.  You guys are a tough crowd.  

Jesse

On 10-Jan-08, at 4:58 AM, Benjamin CABÉ wrote:

Eric Jarvies a écrit :
Thank you,

A couple of questions/suggestions:

6. Currently uDig has 'Properties' listed in the menubar twice.  Once under uDig, and once under Window.  Perhaps the listing under Window should be removed?
Note that it's the same Apple's guideline violation problem for the "File > Exit" entry, it shouldn't appear on OSX
The workaround is to do exactly what is done for the default eclipse IDE ActionBarAdvisor (see org.eclipse.ui.internal.ide.WorkbenchActionBuilder):

IAction preferences = ActionFactory.PREFERENCES.create(window);
preferences.setText(Messages.UDIGWorkbenchAdvisor_preferences_text);
IContributionItem preferencesContributionItem = new ActionContributionItem(preferences) ;
preferencesContributionItem.setVisible(!"carbon".equals(SWT.getPlatform())); //$NON-NLS-1$
windowMenu.add(preferencesContributionItem);


A bug is filed on the Eclipse bugzilla ... https://bugs.eclipse.org/bugs/show_bug.cgi?id=65218

Regards,
Benjamin

_______________________________________________
User-friendly Desktop Internet GIS (uDig)
http://udig.refractions.net
http://lists.refractions.net/mailman/listinfo/udig-devel


Back to the top