Community
Participate
Working Groups
Build Identifier: 20110218-0911 Simple bugfix for plugin "org.eclipse.ui.workbench" class "org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog" In method okPressed() its access the wrong array-size. perspective.turnOnActionSets((IActionSetDescriptor[]) toAdd .toArray(new IActionSetDescriptor[toAdd.size()])); perspective.turnOffActionSets((IActionSetDescriptor[]) toRemove .toArray(new IActionSetDescriptor[toAdd.size()])); should be changed to perspective.turnOnActionSets((IActionSetDescriptor[]) toAdd .toArray(new IActionSetDescriptor[toAdd.size()])); perspective.turnOffActionSets((IActionSetDescriptor[]) toRemove .toArray(new IActionSetDescriptor[toRemove.size()])); http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.ui.workbench/Eclipse%20UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java?revision=1.86&view=markup line 3207/3208 Reproducible: Always
Thanks for the bug report? Would you be interested in contributing a patch? http://wiki.eclipse.org/Platform_UI/How_to_Contribute
Fixed in HEAD
Verified in I20110425-1800