issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
timestamp[us, tz=UTC] | report_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
348,720 | Bug 348720 [DND] Splitting self in shared area causes an SWTException | null | verified fixed | 1b5674f | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/SplitDropAgent.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-19T16:18:09Z | 2011-06-08T13:33:20Z |
376,269 | Bug 376269 Editor Mapping Lookup in EditorRegistry assume file extension is not empty | Build Identifier: M20120208-0800 Some background: We have an existing editor associated to the file names BUILD and BUILD.test. We are currently re-writing this editor. Until this new editor has all the features of the existing/old one, we are allowing our users to use both, for testing purposes. The problem is that when they install the new one, "BUILD" is not mapped to the new editor, even though the new editor is associated to the file names BUILD and BUILD.test. BTW, the new editor is successfully mapped to BUILD.test (but not to BUILD). Problem: After doing some debugging, we found out that the method readResources(Map, Reader) in org.eclipse.ui.internal.registry.EditorRegistry assumes that the file extension is never empty: FileEditorMapping mapping = getMappingFor(name + "." + extension); //$NON-NLS-1$ I'm submitting a patch that does the following, instead: String key = name; if (extension != null && extension.length() > 0) { key = key + "." + extension; //$NON-NLS-1$ } FileEditorMapping mapping = getMappingFor(key); This bug is present in 3.7.2, 3.8 and Juno. The same patch can be be applied to all the Eclipse versions. Reproducible: Always Steps to Reproduce: 1. Have an editor associated to a file name without extension (e.g. "BUILD") 2. Create a new plug-in that has an editor associated to the same extension 3. When the new editor is installed, it is not associated to the file name it is supposed to. | verified fixed | 6a3c287 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-18T11:47:33Z | 2012-04-07T00:53:20Z |
377,031 | Bug 377031 Empty/broken workbench.xmi file makes workspace unusable | While working on another bug I've got into a state where workbench.xmi file became empty. I could not duplicate that, I'd guess that there was either an exception on shutdown or I killed Eclipse instance while save was in progress. At any rate, it turned out that having empty workbench.xmi file renders workspace unusable as Eclipse can not start. The ResourceHandler has this construct: try { resource = resourceSetImpl.getResource(uri, true); } catch (Exception e) { ... resource = resourceSetImpl.getResource(uri, false); } but that does not work as the next line assumes (and has to assume) that the root element in the resource is an application: MApplication theApp = (MApplication) applicationResource.getContents().get(0); | verified fixed | fdf4db7 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ResourceHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-17T20:50:37Z | 2012-04-17T22:00:00Z |
356,209 | Bug 356209 [Compatibility] HandlerUtil.getActiveShell gives me always the parent (Workbench) Shell | Build Identifier: 4.1 If I open a Dialog and hit a key binding I never get the Dialog's Shell. Reproducible: Always | verified fixed | 0c2287b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/WorkbenchSourceProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-16T18:09:45Z | 2011-08-30T13:13:20Z |
355,763 | Bug 355763 Provide tag which prohibits a PartStack to collapse when empty | null | verified fixed | e6b7de2 | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/cleanupaddon/CleanupAddon.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/IPresentationEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-13T15:19:42Z | 2011-08-24T21:06:40Z |
374,483 | Bug 374483 [Compatibility] NPE while Debug is trying to switch perspectives with a dead perspective around | I opened a workspace that seemed to have a perspective from another plug-in so it could not be rendered correctly. It was not the one I currently had opened and when I tried to debug something, Debug tried to switch perspectives for me but it failed with an NPE. Manually going 'Window > Open Perspective > Debug' worked though. java.lang.NullPointerException at org.eclipse.ui.internal.Workbench.activate(Workbench.java:2535) at org.eclipse.ui.internal.Workbench.showPerspective(Workbench.java:2563) at org.eclipse.ui.internal.Workbench.showPerspective(Workbench.java:2528) at org.eclipse.debug.internal.ui.launchConfigurations.PerspectiveManager.switchToPerspective(PerspectiveManager.java:316) at org.eclipse.debug.internal.ui.launchConfigurations.PerspectiveManager$4.runInUIThread(PerspectiveManager.java:395) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) | verified fixed | 0e62440 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-12T20:20:10Z | 2012-03-16T12:13:20Z |
376,155 | Bug 376155 Remove dummy toolbar for fullscreen support in Lion | null | resolved fixed | fdd96b0 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/CocoaUIHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-12T16:14:09Z | 2012-04-05T10:00:00Z |
376,253 | Bug 376253 Handler with no command NPEs in E4Workbench.processHierarchy | If i put two Handlers to a TrimmedWindow and use only of it (attribut commandId of one of the both handlers isn't used) i get following error: !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-04-06 15:04:44.918 !MESSAGE Exception occurred while rendering: org.eclipse.e4.ui.model.application.ui.basic.impl.TrimmedWindowImpl@c1a0eb (elementId: null, tags: null, contributorURI: platform:/plugin/net.teufel.e4.helloworld.ui) (widget: null, renderer: null, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (label: Hello world, iconURI: null, tooltip: null, context: TrimmedWindowImplContext, variables: [], x: -2147483648, y: -2147483648, width: 640, height: 480) !STACK 0 java.lang.NullPointerException at org.eclipse.e4.ui.internal.workbench.E4Workbench.processHierarchy(E4Workbench.java:164) What is the idea behind putting Handlers to Window or TrimmedWindow? To get a better structure? When does it makes sense to collect more than one item in a window? Each handler has to be conntected to a command, why am i only able to define commands inside of Application? At the moment I have to connect each Handler to a command otherwise i get the error above so its not possible to hold two times a similar handler in a TrimmedWindow and decide during runtime wich of the two handlers gets active finally and will be connected to the Toolbaritem. | verified fixed | e2428b0 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/E4Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-11T13:09:14Z | 2012-04-06T13:46:40Z |
364,950 | Bug 364950 Workbench is not mirrored correctly when using "nl" option | null | verified fixed | 7c7397b | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-10T18:07:01Z | 2011-11-28T14:20:00Z |
376,329 | Bug 376329 Arrow keys in quick access dialog also move carat in search box | null | verified fixed | 5945872 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/SearchField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-10T17:40:19Z | 2012-04-09T16:46:40Z |
376,374 | Bug 376374 List of Open editors is not in alphabetical order | null | verified fixed | f284f9b | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/BasicPartList.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-10T16:39:48Z | 2012-04-10T06:40:00Z |
374,058 | Bug 374058 Quick Access drop-down list is overly wide | null | verified fixed | 6dc7688 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/SearchField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-10T14:06:20Z | 2012-03-13T12:00:00Z |
370,119 | Bug 370119 Old welcome support appears when the "new" intro is defined | Build Identifier: M20110909-1335 Hi, In Eclipse Indigo 3.7, selecting Help/Welcome is opening WelcomeEditor instead of Eclipse WelcomePage. This could be detected only when any of the eclipse plugins have a WelcomePage(Welcome.xml) defined in plugin properties(about.ini). In Eclipse Helios(3.6) this problem is not present. I have debugged both the eclipse code and found the probable cause. Below are my observations, I hope this helps to track the problem. * The deprecated class QuickStartAction and the new class IntroAction are sharing the same ActionDefinitionId, "org.eclipse.ui.help.quickStartAction". * As two actions share same Id, the action which is instantiated at last is getting invoked first. * In Eclipse 3.6, the order of instantiation is QuickStartAction, then IntroAction. So whenever we click Welcome from Help menu the UniversalIntro page is getting opened. * In Eclipse 3.7, Class IntroAction is removed and defined as anonyms class for the class variable ActionFactory.Intro and the order of instantiation ActionFactory.Intro followed by QuickStartAction class. So whenever Help/Welcome is selected WelcomeEditor is opened. * If no plugin have WelcomePage defined, the QuickStartAction class is skipped and the UniversalIntroPage is opened. So the problem won't be visible on eclipse Indigo unless any plugin have welcomePage defined. As one of my third party plugin is having welcomePage defined, My customized UniversalIntro page is not being displayed on Eclipse 3.7 It would be really helpful if you could provide a work around. Thanks. Reproducible: Always Steps to Reproduce: 1.Install eclipse platform 2.Add an welcome.xml to the eclipse platform plugin, "org.eclipse.platform_3.7.XX" 3.Run eclipse. Initially WelcomePage is shown. 4.Close it and reopen from Help>Welcome. Welcome Editor will be opened instead of UniversalWelcomePage. This could also be reproduced by installing any plugin with welcome.xml, For eg. Spring IDE. | verified fixed | d8f9b6b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-04T13:56:06Z | 2012-01-30T13:26:40Z |
374,795 | Bug 374795 Open Element dialog (CDT) has text field disabled in 3.8M6 | Using I20120314-1800 (M6) and N20120309-2000 1. With CDT installed and a CDT project (Hello world is OK), open the Open Element dialog (Ctrl+shift+t) with no text selected in the editor. 2. The text field where the element name should be entered is disabled This works correctly in I20120228-0800 with the same version of CDT (8.1.0.201203191015). So, something must've changed in the platform between I20120228-0800 and N20120309-2000. | verified fixed | 0752655 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractElementListSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-03T17:43:08Z | 2012-03-20T16:13:20Z |
242,144 | Bug 242144 [Progress] Progress view does not shrink | Build ID: I20080617-2000 Steps To Reproduce: Progress view doesn't shrink when there is just a few or no jobs running. I think it would be a good idea to shrink the viewport to fit. More information: | verified fixed | 54ee97e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-04-03T15:51:05Z | 2008-07-26T11:00:00Z |
375,651 | Bug 375651 [Compatibilty] NPE on shutdown in WorkbenchPage#getPerspectiveDesc() | I've been unable to reproduce this, but I did just encounter it when running under the debugger. | verified fixed | 5d47e94 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-29T17:45:47Z | 2012-03-29T16:53:20Z |
374,952 | Bug 374952 CCE importing preference in new workspace | Version: 4.2.0 Build id: I20120321-0610 I tried importing my workspace preferences to a new workspace and got the following error in the log. Subsequent tries all worked fine (no exception) java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Boolean at org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher$20.propertyChange(PerspectiveSwitcher.java:626) at org.eclipse.ui.preferences.ScopedPreferenceStore$3.run(ScopedPreferenceStore.java:375) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.preferences.ScopedPreferenceStore.firePropertyChangeEvent(ScopedPreferenceStore.java:372) at org.eclipse.ui.preferences.ScopedPreferenceStore$2.preferenceChange(ScopedPreferenceStore.java:194) at org.eclipse.core.internal.preferences.EclipsePreferences$3.run(EclipsePreferences.java:864) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.preferences.EclipsePreferences.firePreferenceEvent(EclipsePreferences.java:867) at org.eclipse.core.internal.preferences.EclipsePreferences.put(EclipsePreferences.java:880) at org.eclipse.core.internal.preferences.PreferencesService.copyFromTo(PreferencesService.java:356) at org.eclipse.core.internal.preferences.PreferencesService$6.visit(PreferencesService.java:708) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:142) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:146) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:146) at org.eclipse.core.internal.preferences.PreferencesService.internalApply(PreferencesService.java:712) at org.eclipse.core.internal.preferences.PreferencesService.applyPreferences(PreferencesService.java:92) at org.eclipse.ui.internal.wizards.preferences.WizardPreferencesImportPage1.transfer(WizardPreferencesImportPage1.java:185) at org.eclipse.ui.internal.wizards.preferences.WizardPreferencesPage.finish(WizardPreferencesPage.java:619) at org.eclipse.ui.internal.wizards.preferences.PreferencesImportWizard.performFinish(PreferencesImportWizard.java:88) at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:827) at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:432) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:624) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.handlers.WizardHandler$Import.executeHandler(WizardHandler.java:152) at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:279) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:72) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:161) at org.eclipse.ui.internal.handlers.LegacyHandlerService.executeCommand(LegacyHandlerService.java:464) at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1016) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:580) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:535) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) | verified fixed | 84aa978 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-28T18:28:01Z | 2012-03-21T17:13:20Z |
374,597 | Bug 374597 [Compatibility] ClassCastException when adding pure 4.x view to 3.x perspective running in compatibility mode | null | verified fixed | d1356b9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-27T01:24:04Z | 2012-03-18T08:40:00Z |
375,264 | Bug 375264 E4 Contacts Demo's theme toolbars and menus grow after each execution | The E4 Contacts demo (org.eclipse.e4.demo.contacts) seems to have manifested new behaviour where the theme-related toolbar sections and theme menus multiply after each execution. Either this wasn't happening before or I really need to have my eyes checked! | verified fixed | 1db853b | ["examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/processors/MenuThemeProcessor.java", "examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/processors/ToolbarThemeProcessor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-26T14:14:30Z | 2012-03-25T01:46:40Z |
375,282 | Bug 375282 [CSS] Add support for Composite.setBackgroundMode() | The E4 Contacts demo's Help > About and Help > Preferences dialogs show a grey band (or whatever the default colour SWT.COLOR_WIDGET_BACKGROUND may be), and the buttons may also show this grey colour too. To avoid this issue requires that the shell or composite have its background-mode set to SWT.INHERIT_DEFAULT or SWT.INHERIT_FORCE. We should have a way to set this value from CSS. | resolved fixed | df1c03f | ["bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSBackgroundModePropertyHandler.java", "tests/org.eclipse.e4.ui.tests.css.swt/src/org/eclipse/e4/ui/tests/css/swt/ShellTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-26T02:01:53Z | 2012-03-26T02:46:40Z |
375,271 | Bug 375271 [CSS] Deprecation warnings should be more helpful | Currently: !MESSAGE CSS property has been deprecated: simple More useful: !MESSAGE CSS property 'simple' has been deprecated: renamed as swt-simple | resolved fixed | 0dcfa2e | ["bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/RegistryCSSPropertyHandlerProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-25T13:26:21Z | 2012-03-25T12:53:20Z |
375,223 | Bug 375223 [CSS] Themes can't load local or http-based resources | I used to be able to reference http: resources and local files using the url() notation, but that doesn't seem to work any more. What to do if I want my smiling mug as a background? | verified fixed | 5d19250 | ["bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-23T23:01:17Z | 2012-03-23T22:00:00Z |
375,219 | Bug 375219 [CSS Spy] CSS values sometimes don't seem to take effect | There have been occasions where attempting to set a value using CSS Spy doesn't seem to have any effect -- the old value is returned. Seen most often when setting background-color on an element where the CSS definitions have set a background-color. | resolved fixed | d0f56b2 | ["bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-23T22:29:28Z | 2012-03-23T22:00:00Z |
375,066 | Bug 375066 [Compatibility] Show Views dialog is always empty | Build Id: I20120321-0610 Window > Show Views > Other is empty. | verified fixed | fb23b52 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-23T14:01:03Z | 2012-03-22T15:26:40Z |
320,851 | Bug 320851 NPE in WorkbenchSourceProvider | I managed to get this by setting a break point very early in start up (in my case the constructor of the ModelEditor which is restored in my workbench) !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.services.WorkbenchSourceProvider$6.handleEvent(WorkbenchSourceProvider.java:684) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1031) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3775) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1371) at org.eclipse.swt.widgets.Shell.windowDidBecomeKey(Shell.java:1892) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5024) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4582) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4659) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:115) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3274) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2421) at org.eclipse.ui.internal.Workbench.access$3(Workbench.java:2329) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:539) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:525) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407) at org.eclipse.equinox.launcher.Main.main(Main.java:1383) | resolved fixed | 2580207 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/WorkbenchSourceProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-23T13:10:17Z | 2010-07-25T17:46:40Z |
361,472 | Bug 361472 [Compatibility] View action are disabled when its view is not active | The 'Breakpoints' view's 'Remove Selected Breakpoints' and 'Remove All Breakpoints' actions are disabled when the view is inactive. They enable themselves when the view becomes the active view. In 3.x they are always active. | verified fixed | 1a449bf | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityView.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-20T14:59:24Z | 2011-10-19T21:33:20Z |
374,700 | Bug 374700 Splash screen buildId misaligned | The build id shows up in random places on the splash screen depending on what OS you are running (this is caused by font differences on the platforms). The results range from the build id not being properly aligned to the build is being clipped. | resolved fixed | 4479ffd | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/splash/EclipseSplashHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-19T21:42:01Z | 2012-03-19T20:46:40Z |
374,534 | Bug 374534 IEventBroker instances are not actually allocated and destroyed on a per-context basis | We have several view parts that subscribe to events using the IEventBroker. I wondered why a part's subscriptions on its IEventBroker weren't being removed on part close. It turns out that the EventBrokerFactory context function does a get() rather than getLocal(). So if an event broker has been allocated in a parent, that broker will be used for all children. Since a broker is created on the workbench context on startup as a result of configuring the EModelService, and so this instance effectively becomes a singleton instance for the application. I think is a bug. Or at least having a part's subscriptions be automatically expired on close seems to be a big benefit that we're not getting. | verified fixed | d7f3319 | ["bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/events/EventBrokerFactory.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/UIEventsTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-19T00:10:08Z | 2012-03-16T17:46:40Z |
374,326 | Bug 374326 [Compatibility] ToolControl in toolbar using visibleWhen doesn't show up | null | verified fixed | ff42387 | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/cleanupaddon/CleanupAddon.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolControlContribution.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolControlRenderer.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/Bug374326.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-17T00:01:01Z | 2012-03-15T00:06:40Z |
362,201 | Bug 362201 [Compatibility] 'Link with Selection' doesn't toggle properly in the 'Git Repositories' view | I20111025-2000 1. Open the 'Git Repositories' view. 2. Ctrl+F10 > Link with Selection 3. Ctrl+F10, the 'Link with Selection' menu item is not checked. The tool item is also not toggled. This works in 3.x. | verified fixed | 0deafb8 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-16T23:54:25Z | 2011-10-27T12:53:20Z |
371,546 | Bug 371546 [MinMax] Maximized state of the Editor stack is no longer maintained across perspective switches | If you have two perspective stacks open and maximize the editor area in both when you switch back to the first perspective note that the are has reverted back to it's 'restored' state... This is a regression, not really sure when it got introduced. We should look at 'tag' changes during a perspective switch in the MinMaxAddon to see where the tag is being removed (or if it's just the CTabFolder's button state that's wrong...) | verified fixed | 1d05b1e | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-14T20:16:30Z | 2012-02-14T22:53:20Z |
372,614 | Bug 372614 [Compatibility] [Intro] Welcome does not occupy full screen on window without any perspectives | null | verified fixed | 1d21b34 | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-14T18:41:52Z | 2012-02-26T23:46:40Z |
374,289 | Bug 374289 Updating toolbar images has no effect | null | resolved fixed | bb56ee9 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-14T17:58:51Z | 2012-03-14T18:33:20Z |
374,227 | Bug 374227 ModelAssembler doesn't set contributorURI on root-element | We are missing to set the contributorURI on the root element of a fragment contribution and so translation of those item fails. | resolved fixed | 5672257 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ModelAssembler.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/ResourceHandlerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-14T13:16:22Z | 2012-03-14T13:00:00Z |
374,021 | Bug 374021 [Compatibility] Window > New Window from window with no perspective fails | 1. Create a product with no default perspective; configure various actions include Window > New Window 2. Start the product: should open to an empty window with the Welcome/Intro 3. Choose Window > New Window The action will fail with a dialog saying: Problems Opening New Window: Unable to create perspective 'null'. There is no corresponding perspective extension. Although this is a bit of a useless app, it could be typical for a platform shell (a base product where all functionality is to be installed somehow). In our discussion on March 8, 2012, there was consensus that allowing no-perspective is supposed to be supported. The problem is in Workbench#openWorkbenchWindow() has guard code checking for a null perspective. This guard is erroneous given the javadoc for IWorkbench#openWorkbenchWindow() says that the perspectiveId can be null for an empty page. | verified fixed | 839d029 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-13T01:24:46Z | 2012-03-13T00:53:20Z |
374,001 | Bug 374001 Selecting chevron menu when containing a part without icon throws NPE | 0. Ensure you have the CSS editor support available. 1. Open a ".css" file (e.g., blue-gradient.css from org.eclipse.e4.demo.contacts). 2. Select the chevron or hit Ctrl-E to bring up the drop-down 3. See NPE. I think the problem is that the CSS file editor doesn't specify an icon as iconURI = null. java.lang.NullPointerException at org.eclipse.emf.common.util.URI.createURIWithCache(URI.java:663) at org.eclipse.emf.common.util.URI.createURI(URI.java:535) at org.eclipse.e4.ui.internal.workbench.renderers.swt.BasicPartList.getLabelImage(BasicPartList.java:91) at org.eclipse.e4.ui.internal.workbench.renderers.swt.BasicPartList.access$0(BasicPartList.java:87) at org.eclipse.e4.ui.internal.workbench.renderers.swt.BasicPartList$BasicStackListLabelProvider.getImage(BasicPartList.java:55) at org.eclipse.jface.viewers.ColumnLabelProvider.update(ColumnLabelProvider.java:37) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:152) at org.eclipse.jface.viewers.AbstractTableViewer.doUpdateItem(AbstractTableViewer.java:399) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:485) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2167) at org.eclipse.jface.viewers.AbstractTableViewer.createItem(AbstractTableViewer.java:277) at org.eclipse.jface.viewers.AbstractTableViewer.internalRefreshAll(AbstractTableViewer.java:757) at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:649) at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:636) at org.eclipse.jface.viewers.AbstractTableViewer$2.run(AbstractTableViewer.java:592) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1443) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1404) at org.eclipse.jface.viewers.AbstractTableViewer.inputChanged(AbstractTableViewer.java:590) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:280) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1690) at org.eclipse.e4.ui.internal.workbench.renderers.swt.BasicPartList.setInput(BasicPartList.java:141) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showAvailableItems(StackRenderer.java:913) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$8.showList(StackRenderer.java:864) at org.eclipse.e4.ui.widgets.CTabFolder.onSelection(CTabFolder.java:2036) at org.eclipse.e4.ui.widgets.CTabFolder$1.handleEvent(CTabFolder.java:279) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4135) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1270) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3981) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3620) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1015) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:909) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:580) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:535) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) | resolved fixed | 7cb23d0 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/BasicPartList.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-12T20:02:52Z | 2012-03-12T19:20:00Z |
373,961 | Bug 373961 BundleTranslationProvider should support new bundleclass://-style URIs | BundleTranslationProvider assumes that the contributorURI should be of the "platform:/plugin/XXXX" style. It thus skips performing any translations when provided a "bundleclass://" URI, such as might happen for a programmtically-contributed contribution that puts a URI to the contributing class. This could be seen in the Contacts demo, whose MenuThemeProcessor contributes the "Switch Theme" menu. Previously the contribution registered the menu element with a contributorURI of "bundleclass://org.eclipse.e4.demo.contacts", resulting in the menu appearing untranslated as '%switchThemeMenu'. Admittedly the "bundleclass://org.eclipse.e4.demo.contacts" doesn't quite make sense, since it doesn't specify a class, but it would make sense as "bundleclass://org.eclipse.e4.demo.contacts/org.eclipse.e4.demo.contacts.processors.MenuThemeProcessor I'll hack the contacts demo to specify a platform:/plugin-style contributorURI. | resolved wontfix | c4d7f1e | ["examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/processors/MenuThemeProcessor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-12T14:16:08Z | 2012-03-12T13:46:40Z |
354,783 | Bug 354783 [CSS] Refactor custom properties | Currently there are a number of custom properties that are contributed to help style the CTabFolder. These property names should be refactored to reflect that they are contributed and not part of the standard CSS2 selector list. The initial proposed format is: tab-renderer => -swt-tabrender unselected-tabs-color => -swt-unselected-tabs-color | verified fixed | aeacb33 | ["bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/properties/ICSSPropertyHandlerProvider.java", "bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/properties/providers/CSSPropertyHandlerLazyProviderImpl.java", "bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/dom/properties/providers/CSSPropertyHandlerSimpleProviderImpl.java", "bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/engine/CSSEngine.java", "bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/engine/AbstractCSSEngine.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/engine/AbstractCSSSWTEngineImpl.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/engine/CSSSWTEngineImpl.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/engine/CSSSWTLazyHandlerEngineImpl.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyAlignmentSWTHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-11T22:15:27Z | 2011-08-16T02:00:00Z |
348,398 | Bug 348398 Missing setFocus call on tab selection | null | verified fixed | b3ee11e | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-09T18:39:19Z | 2011-06-06T14:20:00Z |
361,275 | Bug 361275 Perspective switcher in another workbench window will not update its tool item | 1. Window > New Window 2. Right-click on a perspective in the perspective switcher > Show Text 3. Only the active workbench window will be updated, the one behind will not. | verified fixed | 96c1cf3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-09T18:19:24Z | 2011-10-18T15:00:00Z |
370,248 | Bug 370248 Mark old Platform API for deletion | null | resolved fixed | 65f3b42 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/AbstractPresentationFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/IPartMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/IPresentablePart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/IPresentationSerializer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/IStackPresentationSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/PresentationUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/StackDropResult.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/StackPresentation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-08T21:09:24Z | 2012-01-31T17:13:20Z |
361,177 | Bug 361177 CTabFolder accessibility improvements | null | resolved fixed | cfd6608 | ["bundles/org.eclipse.e4.ui.widgets/src/org/eclipse/e4/ui/widgets/CTabFolder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-05T19:21:49Z | 2011-10-17T19:33:20Z |
373,148 | Bug 373148 [Compatibility] Executions that fail do not have any exceptions thrown | At the moment, E4HandlerProxy just swallows exceptions. This means that a client using the IHS will think a handler execution has succeeded even when it actually hasn't. Minimally, we should rethrow the ExecutionException from the IHandler's execute(ExecutionEvent) method if the implementation throws one. | verified fixed | 8f5c985 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/E4HandlerProxy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-05T13:54:32Z | 2012-03-02T20:26:40Z |
365,759 | Bug 365759 Key bindings imported from preferences are not always immediately applied | null | verified fixed | cc4b027 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-03-02T20:30:23Z | 2011-12-06T16:46:40Z |
372,873 | Bug 372873 Duplicate 'Plug-in Development' entries in Customize perspective dialog | null | resolved fixed | bb6f393 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-29T19:19:48Z | 2012-02-29T15:40:00Z |
372,844 | Bug 372844 5 test failures in I20120228-2200 | Broken by b2cb908e226851e81f06a7b15f0af0ed9e210a8c. java.lang.NullPointerException at org.eclipse.e4.ui.workbench.renderers.swt.ToolBarManagerRenderer.createWidget(ToolBarManagerRenderer.java:280) at org.eclipse.e4.ui.menu.tests.MToolItemTest.testActionSetAddedToFile(MToolItemTest.java:116) java.lang.NullPointerException at org.eclipse.e4.ui.workbench.renderers.swt.ToolBarManagerRenderer.createWidget(ToolBarManagerRenderer.java:280) at org.eclipse.e4.ui.menu.tests.MToolItemTest.testActionSetAddedToMyToolbar(MToolItemTest.java:181) | verified fixed | 5674d25 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java", "tests/org.eclipse.e4.ui.menu.tests/src/org/eclipse/e4/ui/menu/tests/TestUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-29T13:06:28Z | 2012-02-29T12:53:20Z |
367,314 | Bug 367314 [properties] [resource] Restore defaults does not restore the "Archive" setting | Build Identifier: The properties for any resource allow to set permissions: [] Read Only [x] Archive [] Derived That's the default. Using the "Restore Defaults" button does not always go back to this, the "Steps to Reproduce" show one way that does not work. A flow that does work is to first select all three and then hit "Restore Defaults", so it looks like the Derived and Read-Only ones are correctly restored, but not the Archive one... Reproducible: Always Steps to Reproduce: 1. Open properties for any resource 2. Deselect all checkboxes (especially Archive) 3. Hit "Restore Defaults | resolved fixed | b5bec1b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-28T16:48:21Z | 2011-12-21T12:20:00Z |
348,537 | Bug 348537 Add non-java package table is not selecteable when no java packages are available | Make a plug-in project Add a package with a java file Add two additional packages with an xml-file (non-java packages) in the manifest editor, runtime tab, press "Add..." and add all the java packages to Exported Packages exit the "Add..." dialog press the "Add..." button again the list is empty click the "Show non-Java packages" checkbox the two non-java packages appear but they cannot be selected exit the dialog remove the java package from the list press the "Add..." button again click the "Show non-Java packages" checkbox the two non-java packages appear and can be selected because one or more java packages exists The table seems to be blocked when there are no java packages in the list. | verified fixed | 207cb1a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractElementListSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-28T15:29:52Z | 2011-06-07T09:46:40Z |
371,289 | Bug 371289 Add "active" context variables | In many cases in SDK we see the following pattern: RunAndTrack() { ... getActiveLeaf().get("some_name"); ... } While this works, it might be not efficient as RaT will be called on every change of the active part, regardless if the observed value of "some_name" changed. I'd like to see if we can add "active" variables that will serve as a buffer and will only trigger RaT above when the "some_name" value changed. The RaT would look like this: RunAndTrack() { ... getActive("some_name"); ... } | verified fixed | abae1c3 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/modeling/ExpressionContext.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-24T16:25:31Z | 2012-02-10T21:40:00Z |
361,672 | Bug 361672 InjectionException via NPE when starting a workspace with no perspective opened | 1) Start e4 2) Close all perspectives 3) Exit and save workpace 4) Restart e4 See InjectionEception/NPE !ENTRY org.eclipse.e4.ui.workbench 4 0 2011-10-21 11:08:28.560 !MESSAGE Unable to create class 'org.eclipse.ui.internal.StandardTrim' from bundle '92' !STACK 0 org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:838) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:110) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:317) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:252) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:177) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:93) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:64) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49) at org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer.createWidget(ToolControlRenderer.java:58) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:861) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:615) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:717) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:688) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:682) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:667) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) at org.eclipse.e4.ui.workbench.renderers.swt.TrimBarRenderer.processContents(TrimBarRenderer.java:151) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:627) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:504) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:489) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:591) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:627) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:717) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:688) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:682) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:667) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:933) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:888) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:90) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:565) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:520) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:123) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1431) at org.eclipse.equinox.launcher.Main.main(Main.java:1407) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.StandardTrim.createStatusLine(StandardTrim.java:81) at org.eclipse.ui.internal.StandardTrim.createWidget(StandardTrim.java:39) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) ... 51 more | resolved fixed | 6f4d44e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/StandardTrim.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-24T11:18:41Z | 2011-10-21T15:13:20Z |
350,230 | Bug 350230 Add back unique disabled icon support for ToolItems | null | verified fixed | 3e63299 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/DirectContributionItem.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/IPresentationEngine.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CoolBarToTrimManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-23T20:07:07Z | 2011-06-24T10:06:40Z |
371,115 | Bug 371115 Dependency Injection should not auto-gen an object (without @Creatable annotation) | Currently if I have a non-arg constructor in an Object dependency injection will automatically create an instance and will inject this. I think this is more confusing then helpful and suggest we turn it of. | verified fixed | 07cd6d5 | ["examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailComposite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-23T20:01:53Z | 2012-02-09T17:53:20Z |
369,973 | Bug 369973 New < > tool buttons in CTabFolder need polish | The new "go left" and "go right" tools that were added to the CTabFolder recently need several accessibility and usability improvements: 1) they need to be image tool buttons instead of the strings "<" and ">". This would make them look more polished, and it would keep screen readers from saying "less" and "greater" when the tools get focus. 2) they need to have tooltips. What are they called? What do they do? I have just been calling them "the less and greater guys". You probably want some nice tooltip strings. In addition to helping sighted people determine their function, this would allow screen readers to speak their function. (This assumes that the toolbar is being managed by ToolbarManager, because that class contains a hack for using tool item tooltip strings for the accessible names. If they are not managed by ToolbarManager, and if it is decided that ToolbarManager should not manage these toolbars, then they need). 3) they need to be disabled when pressing them would do nothing. For example: a) when there are no tabs to the left, the < should be disabled b) when there are no tabs to the right, the > should be disabled c) when all tabs are visible, both < and > should be disabled 4) for some reason, they are reversed in the tab order, i.e. if you are in an editor and type ctrl+shift+tab to traverse backwards to these buttons, you will traverse to < first and then > ...but when traversing backwards you really should go to > first and then <. | verified fixed | 13442be | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-23T19:57:29Z | 2012-01-27T16:00:00Z |
355,059 | Bug 355059 [Compatibility] Mylyn's activate task trim is not shown | Steps: 1. Open Mylyn/Tasks preference page 2. Select Show active task on window trim The trim is not being displayed. | verified fixed | 8b1ee24 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarContributionRecord.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CoolBarToTrimManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuAdditionCacheEntry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-23T19:25:01Z | 2011-08-18T12:20:00Z |
372,077 | Bug 372077 Context debug view not plumbed in properly | org.eclipse.e4.core.contexts.debug provides a nifty context debug view. But it is not accessible from the E3.x compat layer. Although it adds itself to the MApplication's part descriptors, the IViewRegistry provided to Show View dialog (org.eclipse.ui.internal.dialogs.ShowViewDialog) does not actually include the MApplication's part descriptor list. | verified fixed | 586f49b | ["bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/FindTargetAction.java", "bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/legacy/ContextTraceLegacyView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-22T21:34:18Z | 2012-02-20T23:20:00Z |
372,240 | Bug 372240 [Compatibility] Ctrl+W closes a non-active editor | 1. Prepare a program that goes two files deep. 2. Put a breakpoint in the second file. 3. Close all opened editors. 4. Open the first file with the main method. 5. Start a debugging session. 6. From the 'Debug' view, go up the stack frame and click on the first file. 7. Ctrl+W 8. The editor behind (the second file) is closed instead of the currently active editor (the first file). | verified fixed | 1354222 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-22T15:54:04Z | 2012-02-22T14:13:20Z |
372,226 | Bug 372226 Installed CSS editor and Appearance page contains blank area | I've installed the CSS editor and opened the Appearance pref page. I don't seem to get any errors in my error log, but their is only a border and blank space where the editor should be. PW | verified fixed | f960db8 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-22T14:25:19Z | 2012-02-22T14:13:20Z |
372,078 | Bug 372078 Injections during execution of MDirectMenuItem contribution object do not receive UI element | null | resolved fixed | d9fb740 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/DirectContributionItem.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MMenuItemTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-21T22:11:53Z | 2012-02-20T23:20:00Z |
372,152 | Bug 372152 Deprecate workbench window advisor methods for custom window creation | The following methods no longer have any effect in 4.2 and should be deprecated: WorkbenchWindowAdvisor: createWindowContents(Shell shell); createEmptyWindowContents(Composite parent); IWorkbenchWindowConfigurer public Menu createMenuBar(); public Control createCoolBarControl(Composite parent); public Control createStatusLineControl(Composite parent); public Control createPageComposite(Composite parent); public IStatus saveState(IMemento memento); | resolved fixed | 83c038a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/application/IWorkbenchWindowConfigurer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/application/WorkbenchWindowAdvisor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-21T19:41:23Z | 2012-02-21T18:46:40Z |
371,817 | Bug 371817 [Compatibility] 'Close All' stops working | Twice today I have gotten into a state where Ctrl+Shift+W doesn't do anything. The second time I was using I20120216-1110 with EGit installed. 'File > Close All' is disabled and it is still like that in a new workbench window. The only workaround I know of is to restart Eclipse. | verified fixed | fc09fb3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CloseAllHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-21T16:43:56Z | 2012-02-16T22:06:40Z |
371,233 | Bug 371233 UIEventPublisher does not publish changes to EMF Map values | The UIEventPublisher does not publish changes to the persited_state because in this case the notification is not coming from the MApplicationElement but the StringToStringMapImpl. | closed fixed | 77ac244 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/UIEventPublisher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-17T19:28:52Z | 2012-02-10T13:20:00Z |
371,611 | Bug 371611 LinkageError in DynamicToolBarContributionItem can cause workbench startup to fail | null | verified fixed | a38b53c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ControlContribution.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dynamicplugins/DynamicInvalidControlContributionTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dynamicplugins/DynamicPluginsTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-17T15:30:37Z | 2012-02-15T12:46:40Z |
371,894 | Bug 371894 Installed CSS editor and now unable to open Appearance pref page | I installed XText from Juno and the CSS Editor from 0.12-I-builds into last night's build: I20120216-2200 org.eclipse.xtext.sdk.feature.group 2.3.0.v201201310353 org.eclipse.e4.tools.css.editor.feature.feature.group 0.12.0.v20111205-2035-17N-8s735557371759D When I go to the Preferences>General>Appearance page (to finally edit my CSS for good it created an e4css project at the top of my Package Explorer and then NPEed. eclipse.buildId=I20120216-2200 java.fullversion=JRE 1.6.0 IBM J9 2.4 Linux amd64-64 jvmxa6460sr9-20101124_69295 (JIT enabled, AOT enabled) J9VM - 20101124_069295 JIT - r9_20101028_17488ifx2 GC - 20101027_AA BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86_64 -data /opt/pwebster/workspaces/build42x/ Error Fri Feb 17 09:31:01 EST 2012 Problems occurred when invoking code from plug-in: "org.eclipse.jface". java.lang.NullPointerException at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.createElement(PartServiceImpl.java:1002) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.delegateBringToTop(PartServiceImpl.java:579) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:557) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:531) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:520) at org.eclipse.e4.ui.preferences.CSSEditorPreferences.createContents(CSSEditorPreferences.java:94) at org.eclipse.ui.internal.dialogs.ViewsPreferencePage.createContents(ViewsPreferencePage.java:89) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:232) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1502) at org.eclipse.jface.preference.PreferenceDialog$14.run(PreferenceDialog.java:1259) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1253) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:675) at org.eclipse.jface.preference.PreferenceDialog$10.run(PreferenceDialog.java:709) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:705) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:888) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:886) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1226) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1251) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:262) at org.eclipse.jface.util.OpenStrategy.access$5(OpenStrategy.java:256) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:433) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3510) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3161) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.open(WorkbenchPreferenceDialog.java:215) at org.eclipse.ui.internal.handlers.ShowPreferencePageHandler.execute(ShowPreferencePageHandler.java:58) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:68) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:130) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:161) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.executeItem(HandledContributionItem.java:763) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.handleWidgetSelection(HandledContributionItem.java:656) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.access$6(HandledContributionItem.java:640) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem$4.handleEvent(HandledContributionItem.java:591) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3535) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3158) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1016) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:579) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:534) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1433) at org.eclipse.equinox.launcher.Main.main(Main.java:1409) | verified fixed | e7cf0bb | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-17T15:12:00Z | 2012-02-17T14:46:40Z |
371,415 | Bug 371415 Infinite recursion when performing recursive copy of eclipse folders using custom FileStore implementation | The CopyFilesAndFoldersOperation has a special validateImportDestinationInternal() method to detect cases where the user copy/pastes a file tree inside itself and produces an error. However, when a custom FileStore implementation is providing the workspace resources the check fails to detect the cycle and produces an infinite recursion and a very deep resource tree as a result. The method relies on equals(), which returns false because MyFileStore is not a LocalFileStore. Perhaps the IFileStore.toURI() should be used instead to equate the URI's of the file stores? Also, maybe the sourceStore should be an instance of MyFileStore instead of LocalFileStore? My file system is providing all of the file stores for the workspace so it is strange that it uses the LocalFileStore implementation for the comparison. | resolved fixed | 5decfae | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-16T22:04:05Z | 2012-02-13T19:06:40Z |
371,816 | Bug 371816 Part that cannot be closed should not react to middle mouse clicks | If a part is not closeable or has been defined as such by the perspective, a middle mouse click should not close the part. | verified fixed | ace4c4b | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-16T21:13:44Z | 2012-02-16T22:06:40Z |
371,100 | Bug 371100 "IllegalArgumentException: Widget has the wrong parent" if use showPart-Method on unvisible Part | Build Identifier: I20120127-1145 I have a Part, declared as unvisible, in the aplication model file "application.e4xmi" in the part i declare an Selectionlistner per DI. Example: @Inject public void setTodo(@Optional @Named(IServiceConstants.ACTIVE_SELECTION) Todo obj { ... } if i use the showPart(...)-Method from the EPartService, to set the unvisible part visible, the part will not show ui elements. next i fire a selection event which is targeted to the listener in the part i got the following Error Stacktrace. java.lang.IllegalArgumentException: Widget has the wrong parent at org.eclipse.swt.SWT.error(SWT.java:4281) at org.eclipse.swt.SWT.error(SWT.java:4215) at org.eclipse.swt.SWT.error(SWT.java:4186) at org.eclipse.e4.ui.widgets.CTabItem.setControl(CTabItem.java:284) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.createTab(StackRenderer.java:574) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.childRendered(StackRenderer.java:624) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:640) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:718) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:689) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:683) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:668) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.showTab(StackRenderer.java:803) at org.eclipse.e4.ui.workbench.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:66) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) workaround is, to use the Method setVisible(...) at the Part-object to set the isVisible flag in the Model just before i call showPart(...). Example: MPart part = pService.findPart(...); if (part != null ) { part.setVisible(true); pService.showPart(part, PartState.VISIBLE); } with the setVisible(...) Method everything works fine. Reproducible: Always Steps to Reproduce: 1. create a unvisible Part in the Model 2. create a class for the Part with a selectionlistener (for example active selection) per DI 3. make the part visible in a SelectionAdapter implementation of a button for example (the gui of the part shouldn't display) 4. fire a selectionevent to test the selectionlistener. 5. the error occurs if the event is fired. | verified fixed | feb8869 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-15T18:39:01Z | 2012-02-09T15:06:40Z |
319,255 | Bug 319255 Hidden toolbar contributions appear in toolbar | SDK 4.0 - I20100707-2006. Hidden toolbar contributions appear in toolbar. 1. start with new workspace ==> New Java Project wizard toolbar icon appears but shouldn't. Looks like the 'hiddenToolBarItem' perspective extension is not honored. | verified fixed | 53ac243 | ["bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-14T19:05:39Z | 2010-07-08T11:53:20Z |
371,424 | Bug 371424 WorkbenchPage#getPerspectiveStack() gets called a lot when opening&closing views | During a cycle of { open view, close view} WorkbenchPage#getPerspectiveStack() gets called about 1,000 times. This method in turn calls EModelService#findElements() which takes some time to search the model. It does not seem that the value returned by getPerspectiveStack() can change during the execution, so I'll add a cache to hold the result of this method. | verified fixed | dff9570 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-13T21:04:17Z | 2012-02-13T21:53:20Z |
365,753 | Bug 365753 [QuickAccess] changes focus which each arrow key causing lots of distracting flashing | 1) Open quick access 2) Type a letter to get a populated drop down. 3) Use the arrow key to scroll up and down in the drop down. The focus is constantly switching from the tree back to the search field text widget. This causes the window trim to get and loose the focus look with each key press. It is very distracting and flashy. | resolved fixed | 15e9461 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-13T20:14:41Z | 2011-12-06T16:46:40Z |
371,416 | Bug 371416 [QuickAccess] Drop down opens in wrong position | Recently released code is causing the the [QuickAccess] drop down to open in the wrong position. I talked to Eric and there was a change this morning that changed the parenting relationship of the SearchField. This is likely causing the problem. | closed fixed | 6a9b339 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/SearchField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-13T20:01:11Z | 2012-02-13T19:06:40Z |
371,087 | Bug 371087 [EAP] No way to store UI-State like in 3.x with IMemento | The current EAP does not allow to persist the state in a way RCP 3.x allowed save the state by implementing IViewPart#saveState(). In EAP we only have @PreDestroy as a lifecycle which is not good because at this moment e.g. SWT-Widgets are already disposed and saving their state in ApplicationElement.persistedState is not possible any more. My suggestion would be to: a) add @PersistState annotation to ui.di b) call it in the ContributedPart renderer in disposeWidget Please not this make it work a bit different than in 3.x where the saveState was called on Workbench shutdown only which always bugged me there already. | resolved fixed | f2a8ce2 | ["bundles/org.eclipse.e4.ui.di/src/org/eclipse/e4/ui/di/PersistState.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/SampleView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-13T17:19:07Z | 2012-02-09T15:06:40Z |
370,808 | Bug 370808 editor right / left buttons tooltip is missing | Build Identifier: I20120127-1145 Refer to attached screenshot for more info (buttons are marked red) Reproducible: Always | verified fixed | 1436a6a | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/SWTRenderersMessages.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-13T15:42:35Z | 2012-02-07T10:20:00Z |
224,566 | Bug 224566 [Preferences] 'Invalid preference page path' log entry should identify cause | I20080327-2251 I'm getting this log entry when I open the Preferences dialog for the first time after starting Eclipse. The error may be valid, but the log entry should tell me more about - why (id of the plug-in with the problematic contribution) and - where (stack trace) this happened. !ENTRY org.eclipse.ui 4 4 2008-03-28 12:06:57.921 !MESSAGE Invalid preference page path: Amateras/Code Assist/Custom Assist | resolved fixed | 2a4aab0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/CategorizedPageRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PreferencePageRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PropertyPagesRegistryReader.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-11T01:28:32Z | 2008-03-28T10:26:40Z |
371,079 | Bug 371079 Debug toolbar sticks around in I20120208-2200 | I20120208-2200 1. Window > Open Perspective > Other... > Java > OK 2. Window > New Window 3. Window > Open Perspective > Other... > Debug > OK 4. The debug toolbar is now visible. 5. Window > Open Perspective > Other... > Java > OK 6. The debug toolbar is still there. | closed fixed | 3c1651e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-10T13:38:50Z | 2012-02-09T15:06:40Z |
370,382 | Bug 370382 [CSS] CSSPropertyTabRenderer doesn't support backwards-compatible platform:/plugin | null | resolved fixed | f7cb780 | ["bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyTabRendererSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/internal/css/swt/CSSActivator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-09T23:22:06Z | 2012-02-01T23:46:40Z |
369,560 | Bug 369560 [CSS] NoSuchMethodException reported setting keylines on non-supporting tab folders | Attempting to set a keyline property on a tab folder renderer that does not support it causes a NoSuchMethodException to be reported. This should be caught at the invokation site and instead transformed into an UnsupportedPropertyException. (The reports to the console are a bit of a nuisance.) java.lang.NoSuchMethodException: org.eclipse.e4.ui.widgets.CTabFolderRenderer.setInnerKeyline(org.eclipse.swt.graphics.Color) at java.lang.Class.getMethod(Class.java:1605) at org.eclipse.e4.ui.css.swt.properties.custom.CSSPropertyInnerKeylineSWTHandler.applyCSSProperty(CSSPropertyInnerKeylineSWTHandler.java:36) at org.eclipse.e4.ui.css.swt.properties.AbstractCSSPropertySWTHandler.applyCSSProperty(AbstractCSSPropertySWTHandler.java:39) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyCSSProperty(AbstractCSSEngine.java:775) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyleDeclaration(AbstractCSSEngine.java:540) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:457) at org.eclipse.e4.ui.css.core.impl.engine.AbstractCSSEngine.applyStyles(AbstractCSSEngine.java:397) at org.eclipse.e4.ui.css.swt.internal.theme.ThemeEngine.applyStyles(ThemeEngine.java:372) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$10.setClassnameAndId(PartRenderingEngine.java:1139) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:85) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.styleStack(WBWRenderer.java:170) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.trackActivePart(WBWRenderer.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.update(ContextObjectSupplier.java:77) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:106) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled(EclipseContext.java:298) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseContext.java:312) at org.eclipse.e4.core.internal.contexts.EclipseContext.activate(EclipseContext.java:598) at org.eclipse.e4.core.internal.contexts.EclipseContext.activateBranch(EclipseContext.java:603) at org.eclipse.e4.ui.internal.workbench.PartActivationHistory.activate(PartActivationHistory.java:52) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:560) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:531) at org.eclipse.e4.ui.internal.workbench.swt.AbstractPartRenderer.activate(AbstractPartRenderer.java:105) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$ActivationJob.run(StackRenderer.java:176) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3945) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3622) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:999) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:893) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:577) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:532) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.lgc.pe.client.e3x.PowerExplorerApplication.start(PowerExplorerApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1433) at org.eclipse.equinox.launcher.Main.main(Main.java:1409) | resolved fixed | 8f4e03e | ["bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyCornerRadiusSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyInnerKeylineSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyOuterKeylineSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyShadowColorHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyShadowVisibleSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyUnselectedTabsSWTHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertye4SelectedTabFillHandler.java", "bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertye4TabOutline.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-09T23:22:02Z | 2012-01-24T18:33:20Z |
370,748 | Bug 370748 [Compatibility] With CDT, instruction stepping mode does not work | Using eclipse-cpp-juno-M5-win32-x86_64 1. Create a hello world project 2. Build the project 3. Debug the project, it should stop at main 4. In the Debug view, in the tree, click on the thread or process, then on the Step Instruction button. Nothing happens. With 3.8M5, when the button is pressed, the button becomes enabled, the disassembly view opens and step over steps through instructions in Disassembly view. | verified fixed | 6fd0c2f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-08T13:04:43Z | 2012-02-06T17:40:00Z |
370,471 | Bug 370471 Double-clicking on marker category crashes Eclipse | Version: 4.2.0 (happens in 3.x as well) Build id: I20120126-1300 Steps: 1. select a lot of projects in your workspace 2. open the Problems view and group the markers by 'Java Problem Type' 3. double-click a category with a lot of markers in it to expand it 4. realize that double-clicking does not expand, but instead opens all child markers in editors 5. watch patiently as 100's (or 1000's) of editors are opened and Eclipse dies a slow death-by-editor. | verified fixed | 6ad021a | ["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserViewer.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-07T18:24:34Z | 2012-02-02T16:26:40Z |
370,632 | Bug 370632 NPE when copying or moving resources linked to non-local filesystem | null | resolved fixed | 7f5a131 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-07T12:58:08Z | 2012-02-04T12:53:20Z |
344,580 | Bug 344580 E4Application has a 'upgradeToMArea_M3' method that should likely go away | This appears to be some interim code used to smooth the transition of folks from M2 to M3 but shouldn't be needed now IMO... | resolved fixed | 4f0e1d8 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-06T16:08:33Z | 2011-05-03T13:40:00Z |
369,730 | Bug 369730 [Compatibility] Crashed view doesn't have an 'X' button | null | verified fixed | f42115e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-06T15:43:37Z | 2012-01-25T19:33:20Z |
370,026 | Bug 370026 NPE in PartActivationHistory.activate() in almost fresh 4.2M5 | I've seen some similar stack traces but couldn't identify any clear duplicate, so here it comes: Freshly installed Eclipse SDK 4.2 M5 Added some more stuff: Object Teams, EGit, Mylyn (assorted) Restart and immediately get this NPE (reported via an InjectionException): java.lang.NullPointerException at org.eclipse.e4.ui.internal.workbench.PartActivationHistory.activate(PartActivationHistory.java:52) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:560) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:531) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartServiceImpl.java:520) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.showPart(PartServiceImpl.java:950) at org.eclipse.ui.internal.WorkbenchPage.showPart(WorkbenchPage.java:959) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:938) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:3442) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3439) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3415) at org.eclipse.ui.internal.WorkbenchIntroManager.createIntro(WorkbenchIntroManager.java:178) at org.eclipse.ui.internal.WorkbenchIntroManager.showIntro(WorkbenchIntroManager.java:125) at org.eclipse.ui.application.WorkbenchWindowAdvisor.openIntro(WorkbenchWindowAdvisor.java:190) at org.eclipse.ui.internal.ide.application.IDEWorkbenchWindowAdvisor.openIntro(IDEWorkbenchWindowAdvisor.java:564) at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:610) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) I haven't even started using Eclipse, so I can't say if/what functionality actually suffers. | verified fixed | f563078 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessContextPresentationEngine.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/SimpleView.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/TargetedView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-03T15:05:07Z | 2012-01-28T00:20:00Z |
369,831 | Bug 369831 Minimized shared area magically comes back | 1. Minimize the shared area (with nothing in it). 2. Close the 'Outline' view. 3. The shared area is now restored. | verified fixed | aaccdef | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ModelServiceImpl.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-02T20:03:46Z | 2012-01-26T17:46:40Z |
370,448 | Bug 370448 Perspective switcher leaks images | The PerspectiveSwitcher calls createImage(*) on a descriptor and does not dispose of the returned image correctly. As a result, one image is leaked for every opened and closed perspective. | verified fixed | 5c04519 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-02T15:11:28Z | 2012-02-02T16:26:40Z |
370,337 | Bug 370337 An IContributionManagerOverrides's getVisible(*) method is called 2k-10k times | null | verified fixed | 990da1f | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ContributionRecord.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarContributionRecord.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-02T13:23:35Z | 2012-02-01T15:26:40Z |
370,214 | Bug 370214 Throw Exception in @PostContruct leads to org.eclipse.e4.core.di.InjectionException: Unable to process "WorkbenchStatusReporter.shellProvider" | If I throw an UnsupportedOperationException in @PostContruct I get the following error: org.eclipse.e4.core.di.InjectionException: Unable to process "WorkbenchStatusReporter.shellProvider": This is really bad as it makes it very hard to find the cause of the problem. Here is the example: @PostConstruct public void createControls(Composite parent) { Button button = new Button(parent, SWT.PUSH); button.setText("Delete Todo"); button.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { throw new UnsupportedOperationException("not supported"); } }); } Here is the full stacktace: org.eclipse.e4.core.di.InjectionException: Unable to process "WorkbenchStatusReporter.shellProvider": no actual value was found for the argument "IShellProvider". at org.eclipse.e4.core.internal.di.InjectorImpl.reportUnresolvedArgument(InjectorImpl.java:387) at org.eclipse.e4.core.internal.di.InjectorImpl.resolveRequestorArgs(InjectorImpl.java:382) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:99) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:317) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:239) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:153) at org.eclipse.e4.ui.internal.workbench.swt.StatusReporterCreationFunction.compute(StatusReporterCreationFunction.java:23) at org.eclipse.e4.core.internal.contexts.ValueComputation.get(ValueComputation.java:59) at org.eclipse.e4.core.internal.contexts.EclipseContext.internalGet(EclipseContext.java:220) at org.eclipse.e4.core.internal.contexts.EclipseContext.internalGet(EclipseContext.java:229) at org.eclipse.e4.core.internal.contexts.EclipseContext.get(EclipseContext.java:191) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9$1.eventLoopException(PartRenderingEngine.java:981) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.handle(PartRenderingEngine.java:1020) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1008) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:893) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:140) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1433) at org.eclipse.equinox.launcher.Main.main(Main.java:1409) | verified fixed | f876fca | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-02-01T15:54:26Z | 2012-01-31T14:26:40Z |
370,219 | Bug 370219 Selection service could use an ability to pause dependency recording | Some Run-and-Tracks might benefit from an ability to stop & resume dependency recording, for instance, when calling 3rd party code such as listeners. In particular, selection service uses async calls to work around this issue which changes expected behavior. I'll add the following methods to RunAndTrack: pauseRecording() resumeRecoding() to provide this functionality and will update selection service to use it. | verified fixed | 435a105 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/SelectionAggregator.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/UITest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-31T14:52:08Z | 2012-01-31T14:26:40Z |
365,597 | Bug 365597 View pane not closing when part is closed | I20111201 (4.2) If I close a view below the editor, the view pane sticks around. This seems to be a painting problem - if I minimize/restore the window it disappears. This has been consistently reproducible so far today... | verified fixed | aaa101d | ["bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/internal/services/ContextContextService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-31T13:07:20Z | 2011-12-05T15:46:40Z |
366,174 | Bug 366174 PresentationUtil is not in Juno 4.2 | Hi, could you provide the class PresentationUtil in Juno 4.2 or do you provide another class to replace it? We use PresentationUtil.addDragListener and PresentationUtil.removeListener. Regards, -- Vincent Lorenzo | verified fixed | 181997f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/PresentationUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-31T13:06:36Z | 2011-12-09T11:26:40Z |
370,130 | Bug 370130 [Compatibility] View toolbar button doesn't show command name as tooltip | 4.2 M5, EGit 1.3.0.201201270251 Some view toolbar buttons don't show tooltips in 4.2 (but works fine in 3.8). An example is the "Refresh" button in the "Git Repositories" view. The button is contributed via <menuContribution locationURI="toolbar:org.eclipse.egit.ui.RepositoriesView"> <command commandId="org.eclipse.egit.ui.RepositoriesViewRefresh" style="push"> </command> ... where the command doesn't have a "tooltip" attribute. In 3.8, the name of the command is used in that case, see CommandContributionItem#updateToolItem(). | verified fixed | 48126a2 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-30T16:36:49Z | 2012-01-30T13:26:40Z |
369,790 | Bug 369790 [Compatibility] NPE opening Call Hierarchy view | I20120123-1210 - Make sure 'Call Hierarchy' view is not open in Debug perspective - Switch to Java Perspective - Open Call Hierarchy on some method, and then 'Pin' the view - Open Call Hierarchy on another method, and also 'Pin' this view (since the first view was pinned a second Call Hierarchy view will be created) - Open Call Hierarchy on one more method - Bring focus on one of the pinned Call Hierarchy views - Now switch to Debug perspective - Open Call Hierarchy on a method => The first NPE shown below - Select an element in the view => The second NPE shown below I can reproduce this consistently with multiple Call Hierarchy views opened and some of them pinned in the Java perspective. ------------------------------------------------------------------------------- java.lang.NullPointerException at org.eclipse.ui.internal.e4.compatibility.SelectionService.selectionChanged(SelectionService.java:322) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.fireSelectionChanged(SelectionProviderMediator.java:131) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.propagateFocusChanged(SelectionProviderMediator.java:119) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.doFocusChanged(SelectionProviderMediator.java:96) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.access$0(SelectionProviderMediator.java:93) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator$InternalListener.focusGained(SelectionProviderMediator.java:47) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:139) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:2822) at org.eclipse.swt.widgets.Widget.wmSetFocus(Widget.java:2403) at org.eclipse.swt.widgets.Control.WM_SETFOCUS(Control.java:5152) at org.eclipse.swt.widgets.Tree.WM_SETFOCUS(Tree.java:7045) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4598) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5939) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4972) at org.eclipse.swt.internal.win32.OS.SetFocus(Native Method) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:1098) at org.eclipse.swt.widgets.Control.setFocus(Control.java:3303) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:1040) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewer.setFocus(CallHierarchyViewer.java:82) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewer.setMethodWrappers(CallHierarchyViewer.java:68) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart.updateView(CallHierarchyViewPart.java:1154) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart.refresh(CallHierarchyViewPart.java:778) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyViewPart.setInputElements(CallHierarchyViewPart.java:303) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyUI.openView(CallHierarchyUI.java:245) at org.eclipse.jdt.internal.ui.callhierarchy.CallHierarchyUI.openSelectionDialog(CallHierarchyUI.java:226) at org.eclipse.jdt.internal.ui.callhierarchy.OpenCallHierarchyAction.run(OpenCallHierarchyAction.java:120) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:279) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:251) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:584) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:501) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:999) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:893) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:577) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:532) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1433) at org.eclipse.equinox.launcher.Main.main(Main.java:1409) ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- java.lang.NullPointerException at org.eclipse.ui.internal.e4.compatibility.SelectionService.selectionChanged(SelectionService.java:322) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.fireSelectionChanged(SelectionProviderMediator.java:131) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator.doSelectionChanged(SelectionProviderMediator.java:112) at org.eclipse.jdt.internal.ui.viewsupport.SelectionProviderMediator$InternalListener.selectionChanged(SelectionProviderMediator.java:40) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:164) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:162) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2188) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:1211) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:1241) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:239) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:233) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:403) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4165) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3754) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:999) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:893) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:577) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:532) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:352) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:624) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:579) at org.eclipse.equinox.launcher.Main.run(Main.java:1433) at org.eclipse.equinox.launcher.Main.main(Main.java:1409) ------------------------------------------------------------------------------- | verified fixed | 147c89b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-30T14:29:31Z | 2012-01-26T12:13:20Z |
369,866 | Bug 369866 New label for part -> StringIndexOutOfBoundsException in StackRenderer | If I define a part without label and set it to dirty I get a StringIndexOutOfBoundsException in StackRenderer. Example: package com.exmaple.e4.playground3.parts; import javax.annotation.PostConstruct; import javax.inject.Inject; import org.eclipse.e4.ui.di.Persist; import org.eclipse.e4.ui.model.application.ui.MDirtyable; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; public class MySavePart { @Inject MDirtyable dirty; @PostConstruct public void createUi(Composite parent) { Button button = new Button(parent, SWT.PUSH); button.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { dirty.setDirty(true); } }); } @Persist public void save() { System.out.println("Saving data"); // Save the data // ... // Now set the dirty flag to false dirty.setDirty(false); } } Stack: java.lang.StringIndexOutOfBoundsException: String index out of range: 0 at java.lang.String.charAt(String.java:694) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.updateTab(StackRenderer.java:343) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$2.handleEvent(StackRenderer.java:305) | resolved fixed | e5edf9f | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-27T22:12:59Z | 2012-01-26T20:33:20Z |
367,486 | Bug 367486 [Compatibility] Rational ClearCase SCM Adapter does not work any more | Build Identifier: I20111221-1500 I use Rational's ClearCase SCM Adapter 7.6.0v201105111445 for a long time and it worked fine. Since my second to last update about three or four days ago I doesn't any more. This is only the current state but it started some time earlier. I do not know exactly when but I think when I moved to eclipse 4.2 some menu items from the scm adapter plugin failed e.g. "edit view properties" or "find checkouts" ... Reproducible: Always Steps to Reproduce: 1. Connect to Rational ClearCase (CPU load - Intel Core 2 Duo - raises between 13% and 30% 2. click "update view" (CPU load raises to 50% and eclipse IDE does not respond any more) 3. | resolved fixed | 07da720 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/CommandLegacyActionWrapper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-23T20:14:26Z | 2011-12-23T11:33:20Z |
369,434 | Bug 369434 NPE on startup in PerspectiveStackRenderer when PS is hidden by Welcome view | I get an NPE on startup when the Welcome view was saved on-screen. The NPE occurs in PerspectiveStackRenderer#showTab(MUIElement) line 114: // relayout the perspective Composite psComp = ctrl.getParent(); StackLayout sl = (StackLayout) psComp.getLayout(); 114: sl.topControl = ctrl; psComp.layout(); It seems to work happily if I change the code to: // relayout the perspective Composite psComp = ctrl.getParent(); StackLayout sl = (StackLayout) psComp.getLayout(); if (sl != null) { sl.topControl = ctrl; psComp.layout(); } Steps to repeat: 1. Open to the Welcome / Intro (Help > Welcome) 2. Quit, and then restart. You should get the NPE below on startup. Daemon Thread [Thread-1] (Suspended (exception NullPointerException)) PerspectiveStackRenderer.showTab(MUIElement) line: 114 PerspectiveStackRenderer(LazyStackRenderer).postProcess(MUIElement) line: 97 PerspectiveStackRenderer.postProcess(MUIElement) line: 77 PartRenderingEngine.safeCreateGui(MUIElement, Object, IEclipseContext) line: 632 PartRenderingEngine.safeCreateGui(MUIElement) line: 718 PartRenderingEngine.access$2(PartRenderingEngine, MUIElement) line: 689 PartRenderingEngine$7.run() line: 683 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.createGui(MUIElement) line: 668 SashRenderer(SWTPartRenderer).processContents(MElementContainer<MUIElement>) line: 59 PartRenderingEngine.safeCreateGui(MUIElement, Object, IEclipseContext) line: 628 PartRenderingEngine.safeCreateGui(MUIElement) line: 718 PartRenderingEngine.access$2(PartRenderingEngine, MUIElement) line: 689 PartRenderingEngine$7.run() line: 683 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.createGui(MUIElement) line: 668 WBWRenderer(SWTPartRenderer).processContents(MElementContainer<MUIElement>) line: 59 WBWRenderer.processContents(MElementContainer<MUIElement>) line: 584 PartRenderingEngine.safeCreateGui(MUIElement, Object, IEclipseContext) line: 628 PartRenderingEngine.safeCreateGui(MUIElement) line: 718 PartRenderingEngine.access$2(PartRenderingEngine, MUIElement) line: 689 PartRenderingEngine$7.run() line: 683 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.createGui(MUIElement) line: 668 PartRenderingEngine$9.run() line: 938 Realm.runWithDefault(Realm, Runnable) line: 332 PartRenderingEngine.run(MApplicationElement, IEclipseContext) line: 893 E4Workbench.createAndRunUI(MApplicationElement) line: 85 Workbench$4.run() line: 577 Realm.runWithDefault(Realm, Runnable) line: 332 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 532 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 IDEApplication.start(IApplicationContext) line: 124 EclipseAppHandle.run(Object) line: 196 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 352 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 597 Main.invokeFramework(String[], URL[]) line: 624 Main.basicRun(String[]) line: 579 Main.run(String[]) line: 1433 Main.main(String[]) line: 1409 | verified fixed | 8b99aba | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/PerspectiveStackRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-23T19:01:24Z | 2012-01-23T17:33:20Z |
368,494 | Bug 368494 [Compatibility] Preference mnemonic doesn't appear | null | verified fixed | b8c6c0a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-23T18:02:56Z | 2012-01-12T23:13:20Z |
365,181 | Bug 365181 [Workbench] XMLMemento method to enumerate all child nodes | Build Identifier: It would be great to have a method getChildren() that enumerates all children of a node. Something like: public IMemento[] getChildren() { final List<IMemento> result = new LinkedList<IMemento>(); // Get the nodes. final NodeList nodes = element.getChildNodes(); final int size = nodes.getLength(); if (size == 0) { return new IMemento[0]; } // Extract each node with given type. for (int nX = 0; nX < size; nX++) { final Node node = nodes.item(nX); if (node instanceof Element) result.add(new EnhancedXMLMemento(factory, (Element) node)); } return result.toArray(new IMemento[result.size()]); } Reproducible: Always | verified fixed | b36acc1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IMemento.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/XMLMemento.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/util/ConfigurationElementMemento.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/internal/TestMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-23T16:58:42Z | 2011-11-30T13:33:20Z |
357,921 | Bug 357921 [Compatibility] Appearance preference page has typo and misses mnemonics | null | verified fixed | d381257 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-23T15:59:32Z | 2011-09-16T10:46:40Z |
369,229 | Bug 369229 SashLayout sets widgets on an MPSC eagerly which will cause child elements to not be rendered | SashLayout will inspect its children and set a Rectangle instance in them if they are an MGenericTile. The issue here is that the rendering engine an element's widget to determine whether it needs to be processed or not. If a widget is prematurely set on a parent MPSC, then any child model elements of the MPSC will simply be skipped by the rendering engine. | verified fixed | 185a1ab | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SashLayout.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/LayoutView.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-20T15:32:52Z | 2012-01-20T14:33:20Z |
349,423 | Bug 349423 [Compatibility] 'Source' and 'Refactor' menus disappear after installing Photran | After installing Photran from Indigo and restarting, the 'Source' and 'Refactor' menus no longer show up when the 'Package Explorer' is the active part. If I select something in the view the 'Refactor' menu shows up but the 'Source' menu does not. | verified fixed | 4bdf5a7 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ContributionRecord.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-19T18:35:57Z | 2011-06-15T12:13:20Z |
369,006 | Bug 369006 Remove 4.x workbench dependency on equinox.concurrent | There are some trivial references to org.eclipse.equinox.concurrent in org.eclipse.e4.ui.workbench and org.eclipse.e4.core.services. I think we should just remove these rather than bringing in a new dependency. They are used to define and register a ISchedulingExecutor service but nobody ever uses it. The reason I think it is worth removing them is this was investigation that was started long ago but never made much progress. The org.eclipse.e4.core.services.work package is in a similar state, and defines its own Future API that duplicates the work in org.eclipse.equinox.concurrent (and java.util.concurrent for that matter). Once we add a bundle to our RCP feature it is quite difficult to remove in the future. I have a patch ready but was wondering if anyone else has seen evidence of ISchedulingExecutor being used by anyone. | verified fixed | ec543e9 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/Activator.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/JobExecutor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2012-01-18T21:44:07Z | 2012-01-18T20:53:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.