I'm having a problem with Eclipse Helios and ToolbarManager on RCP Views.
In the view class (extends ViewPart), the toolbar is created as follows:
IToolBarManager toolbarManager = getViewSite().getActionBars().getToolBarManager();
toolbarManager.add(action1);
toolbarManager.add(action2);
toolbarManager.add(...);
What happens?
When the view is opening, the Toolbar is created on the left side (on the title place) and then on the correct side. http://dl.dropbox.com/u/126065/Imagens/Screens/Colibri_toolbar_bug.jpg
When the view is opened, the "duplicated" left toolbar disappears! http://dl.dropbox.com/u/126065/Imagens/Screens/Colibri_toolbar_ok.jpg
The worst problem is on the Workbench restore side (and i believe it's related with this behavior): when there is more than one view to restore, a "duplicated" version of the Toolbar of the first view opened is created on the left side of the Workbench itself!!! And it does not go away until i swap to the view under it. http://dl.dropbox.com/u/126065/Imagens/Screens/Colibri_toolbar_bug2.jpg
I really need a tip on this one...
NOTE: This never happened with previous versions of Eclipse.
Thanks!