id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
6,330
2,652
Bug 2652 [UI] EC - Folder with only placeholders is still visible (1GHQON6)
null
2001-10-10 22:40:43
1,002,770,000
resolved fixed
72b6fcb
1,018,020,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IFolderLayout.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IPageLayout.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IPlaceholderFolderLayout.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PageLayout.java bundles/org.eclipse.ui/Eclipse UI...
Eclipse_Platform_UI
6,331
10,144
Bug 10144 org.eclipse.ui.views.internal.framelist.* should become API
The framelist classes are internal but are used by external clients and therefore they should be promoted to API.
2002-02-24 17:58:57
1,014,590,000
resolved fixed
7a24f7d
1,017,900,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/framelist/BackAction.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/framelist/ForwardAction.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/framelist/Frame.java bundles/org.eclipse...
Eclipse_Platform_UI
6,332
11,044
Bug 11044 Working Sets framework
See Working Sets RFC for information.
2002-03-08 13:42:27
1,015,610,000
resolved fixed
cbc15a5
1,017,880,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/ResourceNavigator.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IWorkbench.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IWorkbenchPage.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IWorkingSet.java bundles/org....
Eclipse_Platform_UI
6,333
2,736
Bug 2736 Performance: Task list delta listener should use visitor (1GITCP0)
TaskListContentProvider.getMarkerDeltas is a recursive method that walks over tree deltas and gathers the set of marker changes. We will soon be making some optimizations to the delta visitor code, so it will soon be more efficient to use a visitor than to walk over the delta yourself. The visitor interface is IResourc...
2001-10-10 22:42:30
1,002,770,000
resolved fixed
5439efc
1,017,870,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/tasklist/TaskListContentProvider.java
Eclipse_Platform_UI
6,334
11,952
Bug 11952 NumberFormatException in preference page
20020319 1. open the workbench pref page 2. empty the 'size of recently opened files list' text field 3. press ok in the dialog java.lang.NumberFormatException: at java.lang.Integer.parseInt(Integer.java(Compiled Code)) at java.lang.Integer.<init>(Integer.java(Compiled Code)) at org.eclipse.jface.preference.IntegerFiel...
2002-03-20 12:43:23
1,016,650,000
resolved fixed
2666a89
1,017,860,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferencePage.java
Eclipse_Platform_UI
6,335
12,583
Bug 12583 Paste enablement only updated when selection changes
Build 20020328 - select a file in the Navigator - choose Copy - Paste is disabled - change the selection away, then back to the same file - Paste is now enabled Paste should be enabled whenever there is an appropriate resource on the clipboard. The best way to do this would be using change callbacks from the clipboard,...
2002-04-01 22:14:33
1,017,720,000
resolved wontfix
176ee68
1,017,760,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/CopyAction.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/PasteAction.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/RefactorActionFactory.java bundl...
Eclipse_Platform_UI
6,336
2,901
Bug 2901 PreferencePage button bar should not make buttons equal width (1GKKFMI)
PreferencePage.createControl should not do layout.makeColumnsEqualWidth= true; for the button (Default, Apply) composite ISV's may add more buttons and they may be wide. Implementors are responsible for ensuring that their buttons have a minimum width and this is enough to make all the buttons the same width in most ca...
2001-10-10 22:45:46
1,002,770,000
resolved fixed
2c02cef
1,017,700,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/preference/PreferencePage.java
Eclipse_Platform_UI
6,337
10,842
Bug 10842 [Contributions] ordering: ActionFactories should support groups
Build 20020305 JDT uses groups to control the positioning of menu items in context menus. JDT would like to reuse some of the UI's action factories. But currently they simply add the entries to the end of the menu. It would be helpful if a action factory would support an additional group. If specified the factory adds ...
2002-03-06 07:51:04
1,015,420,000
resolved wontfix
ae9406c
1,017,690,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/ActionFactory.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/GotoActionFactory.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/GotoActionGroup.java bu...
Eclipse_Platform_UI
6,338
11,128
Bug 11128 Access to a field in a particular super-type through IJavaObject
It is possible to cast an instance to a super type and query it for a field. This query should return the field from the super type. For the evaluation engine to support this, we need to be able to ask an IJavaObject for a field from a particular type in the hierarchy as follows: public IJavaFieldVariable getField(Stri...
2002-03-11 15:46:31
1,015,880,000
verified fixed
b12800d
1,017,680,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ReopenEditorMenu.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchActionBuilder.java
Eclipse_Platform_UI
6,339
12,337
Bug 12337 Edit menu items remain disabled after viewpart activation
20020326-1324-I on Linux-Motif 1) open a CU 2) change focus to outline 3) verify that most edit menu items are disabled 4) change focus back to editor 5) observe that the edit menu items remain disabled I replaced the org.eclipse.ui plugin with an old one (20020321) and the problem is gone.
2002-03-27 05:02:49
1,017,220,000
resolved fixed
6d056ff
1,017,240,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorMenuManager.java
Eclipse_Platform_UI
6,340
6,656
Bug 6656 Close button moves down when view resized smaller
On linux, running build 2001-11-27 (does not happen on build 2001-11-16 on Nt 2000). When a view like the Navigator is resized smaller, the tool items move below the label. However, so does the pulldown menu icon (triangle) and the close icon (X). These two tool items use to stay on the same line as the label no matter...
2001-12-06 14:43:42
1,007,670,000
resolved fixed
d5e0f80
1,017,160,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PartPane.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ViewPane.java
Eclipse_Platform_UI
6,341
2,272
Bug 2272 Copy & Move should be disabled when closed (1GEHVNK)
It is not possible to copy or move a project when it is closed, so the commands should be disabled. Steps: 1) create a new project 2) in the Navigator, right click on the project and click 'Close Project' 3) right click on the project and click 'Copy Project' 4) enter a new name and click OK The workbench will not allo...
2001-10-10 22:33:00
1,002,770,000
resolved fixed
b6fcbd2
1,017,150,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/CopyProjectOperation.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/CopyProjectAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/MoveProjectAction.java
Eclipse_Platform_UI
6,342
2,127
Bug 2127 Tasks Cell Editor does not close on deactivation (1GE7AN3)
I'm not sure if this is a bug. It is very strange behavior, though. 1. Add a task to the task list. 2. Click on description to edit. 3. While cell editor is active click on navigator. Notice activation is now in navigator, but cell editor in task list is still open. 4. Click back on title for tasks. 5. Move scroll bar ...
2001-10-10 22:27:01
1,002,770,000
resolved fixed
89de3ec
1,017,080,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/viewers/TableViewerImpl.java
Eclipse_Platform_UI
6,343
10,714
Bug 10714 Focus doesn't always return to correct editor on close
Build 20020214 1) Open several editors 2) Activate (give focus to) the first editor in the list (leftmost) 3) Now give focus to the rightmost editor 4) Give focus to some other view, such as content outline 5) Hit Ctrl+F4 to close active editor After step 5), I would expect focus to return to the left-most editor, beca...
2002-03-04 14:31:57
1,015,270,000
resolved fixed
68d998e
1,017,080,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
6,344
2,241
Bug 2241 [UI] Copy/Move Folders/Files issues (1GEASN1)
PR marked SEVERE due to internal error in scenario 3 below Scenario 1: - create new project A - new folder B under A - select B - choose Copy Dialog title should be "Copy Folder". Label text should be "Select the destination for B." - select B in dialog - hit OK - get error dialog: "Copy Problems" / "Problems occurred ...
2001-10-10 22:31:25
1,002,770,000
resolved fixed
9f394b0
1,017,070,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/PasteAction.java
Eclipse_Platform_UI
6,345
2,118
Bug 2118 Move project dialog confusing
Create a project In navigator, hit move. In the resulting dialog, it doesn't tell me what it wants me to do. The dialog title just says, "Project". If I go to the location text box, and try to append something, an error message appears at the bottom, which is cut off so I can't read it. There should be at least hoverhe...
2001-10-10 22:26:49
1,002,770,000
resolved fixed
b238ba2
1,017,070,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/ProjectLocationMoveDialog.java
Eclipse_Platform_UI
6,346
11,069
Bug 11069 Prompting for saving a dirty shared editor inconsistent
02-14 build. Open Java file "A" in Workbench window 1. Dirty the editor. Open Workbench window 2, and open the same resource while dirty. Try to close Workbench window 2 (Alt+F4), you get prompted to save. Try to close Editor (Ctrl+F4), you don't get prompted. In either case you close the editor, but you only get promp...
2002-03-09 11:31:13
1,015,690,000
resolved fixed
7b7dfcf
1,017,070,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorManager.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
6,347
10,267
Bug 10267 State of open Workbench Windows gets partially lost on shutdown
If I shutdown eclipse with some editors dirty, I will get prompted to save those editors. However, certain workbench windows have already started closing. If I press cancel at that time, the shutdown is aborted, and I lost the open windows that did NOT have dirty editors and came before the window which did.
2002-02-26 11:41:16
1,014,740,000
resolved fixed
4244025
1,017,070,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorManager.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
6,348
8,044
Bug 8044 Cannot close a fast view with an error
If there is an error creating a fast view the close button does not work. Steps 1) Open a view that will have errors using Show View... 2) A fast view will come up with the error message contents 3) Try to close it using the X close button - you will have to reset to get rid of it.
2002-01-22 16:27:13
1,011,730,000
closed fixed
c507687
1,017,070,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
6,349
11,294
Bug 11294 Internal error opening workbench editors dialog
Build 20020312 I pressed Ctrl+W to open a recently closed editor, and an internal error occurred. I had recently recovered from another crash of the workbench, I don't know if that's related. I can now consistently reproduce the error in my workspace, even if I shut down and restart. My UI setup is a single workbench w...
2002-03-13 14:36:41
1,016,050,000
resolved fixed
c7cc18b
1,016,840,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchEditorsDialog.java
Eclipse_Platform_UI
6,350
11,747
Bug 11747 Not enough info added to log on runtime exceptions in WorkspaceAction
Build 20020319 I'm trying to track down an exception that gets caught in WorkspaceAction.run. The problem is, this method just logs the receiver class name and the exception's toString. It does not capture the exception's stack trace. It should create a status object with the exception inside it, then log that status o...
2002-03-19 18:19:43
1,016,580,000
resolved fixed
ec9e97b
1,016,830,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/WorkspaceAction.java
Eclipse_Platform_UI
6,351
2,246
Bug 2246 DnD in Navigator: line suggests ordering is possible (1GEAUIG)
When dragging an item in the Navigator, it shows a horizontal line between items, and allows a drop when shown. This suggests that the items can be ordered, but the Navigator always shows elements in sorted order, so order does not matter. NOTES: NE (5/25/01 4:45:50 PM) Note that the Packages View does not do this. Nor...
2001-10-10 22:31:36
1,002,770,000
resolved fixed
f472728
1,016,750,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/ResourceNavigator.java
Eclipse_Platform_UI
6,352
11,107
Bug 11107 Action filter asking closed project for natures
IProject#hasNature(String) is spec'ed to throw an exception if the project is closed, and I recently fixed the implementation to match this. WorkbenchProject#testAttribute calls this method when filtering actions, and as a result, many CoreExceptions are now thrown when a user right-clicks on a closed project in the na...
2002-03-11 12:58:07
1,015,870,000
resolved fixed
1a5702a
1,016,750,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/model/WorkbenchProject.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/model/WorkbenchResource.java
Eclipse_Platform_UI
6,353
11,980
Bug 11980 MultiEditor contains unneccessary platform-dependant import
The class: org.eclipse.ui.part.MultiEditor contains the following import which doesn't appear to be used: import org.eclipse.swt.internal.win32.GRADIENT_RECT; In a selfhosting environment, this creates an error on Linux. This import doesn't appear to be used. Unless I'm mistaken, I believe this import should be removed...
2002-03-20 14:22:05
1,016,650,000
resolved fixed
5a94066
1,016,740,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/part/MultiEditor.java
Eclipse_Platform_UI
6,354
2,775
Bug 2775 [JFace] Opening a font field editor with preview text does not use the change label (1GJ6I1N)
If you open a font field editor with a preview text specified the label for the change button does not show up. We need to add the line changeButtonText = JFaceResources.getString("openChange"); //$NON-NLS-1$ to the method public FontFieldEditor( String name, String labelText, String previewText, Composite parent) NOTE...
2001-10-10 22:43:19
1,002,770,000
closed fixed
69d7209
1,016,740,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/preference/FontFieldEditor.java
Eclipse_Platform_UI
6,355
2,221
Bug 2221 New wizard disables Finish even with valid selection (1GEAPG3)
Open the New wizard dialog. Select Basic and then File. Notice the finish button is enabled now. Click on Basic again and notice the Finish button is disabled even thought File is still selected in the list. NOTES: NE (05/28/01 2:32:52 PM) It's the Next button, not the Finish button.
2001-10-10 22:30:15
1,002,770,000
resolved fixed
b053ddc
1,016,740,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizardNewPage.java
Eclipse_Platform_UI
6,356
2,232
Bug 2232 Usability: No way indicate a warning in a wizard (1GEAR6U)
EG (5/25/01 9:33:33 PM) from GDA Add AbstractDocument.AttributeContext o It displays an error/info in the banner area but there is no icon to draw your attention to it so it goes unnoticed. NOTES: EG (5/25/01 9:34:54 PM) wizard only supports to show errors there is no API to show a warning. All we can do is to change t...
2001-10-10 22:30:48
1,002,770,000
resolved fixed
c4f6eea
1,016,740,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/dialogs/TitleAreaDialog.java bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/wizard/WizardDialog.java bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/wizard/WizardPage.java
Eclipse_Platform_UI
6,357
9,274
Bug 9274 Export dialog does not populate list if element is preselected
If the current selection for export is a file that is in the root of a project selecting that project the first time in the export dialog won't do anything. If you select a second time it will. STEPS 1) Create a Project Foo 2) Create a file bar.txt in Foo 3) Select bar.txt 4) Choose export 5) Select Foo in the dialog -...
2002-02-07 16:27:22
1,013,120,000
closed fixed
a996a87
1,016,740,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/ResourceTreeAndListGroup.java
Eclipse_Platform_UI
6,358
10,277
Bug 10277 Editor reuse not consistent
If editors are opened with activate==true then the last/oldest editor is reused but if the editors are opened with activate==false then the newest editor is reused. This is not what I would expect. Test case: 1. Set the editor threshold to 3 for Workbench and for Java Browsing (Preferences -> Java -> Work in Progress -...
2002-02-26 12:36:42
1,014,750,000
resolved fixed
72e1d84
1,016,730,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
6,359
2,181
Bug 2181 Browse directories dialog is empty (1GEA8DN)
Open the new project wizard Select Project Press the next button Enter a project name Uncheck use default directory Press browse There is a beep and the directory dialog is empty The dialog should show the directory that most closely maps to what you have entered. NOTES: RG (5/25/01 8:51:17 AM) On Windows we always see...
2001-10-10 22:28:05
1,002,770,000
resolved fixed
669f3b3
1,016,670,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardNewProjectCreationPage.java
Eclipse_Platform_UI
6,360
11,752
Bug 11752 Internal error building project with cycles
Build 20020319 1) Create java project P1 2) Create java project P2 3) Add P1 as project reference for P2 4) Add P2 as project reference for P1 5) Select both projects in navigator, Rebuild All An internal error occurs (UnsupportedOperationException). A glance at the code shows the error in BuildAction.pruneResources: L...
2002-03-19 18:41:59
1,016,580,000
resolved fixed
7caf1e8
1,016,660,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/BuildAction.java
Eclipse_Platform_UI
6,361
11,968
Bug 11968 ActionContributionItem update not working correctly
The update method was failing to set the enablement correctly in the case of a newly made item.
2002-03-20 13:56:10
1,016,650,000
resolved fixed
83dd1f9
1,016,650,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/action/ActionContributionItem.java
Eclipse_Platform_UI
6,362
2,145
Bug 2145 Fast views too slow when going away (1GE8IHM)
Fast views open quickly but have a scroll effect on closing. The effect is neat the first time you see it but quickly becomes a pain especially if the fast view is expanded across the workbech (ex. tasklist > 1sec.) NOTES: RG (5/24/2001 4:58:22 PM) The effect looks bad on Linux. It leaves a series of edges which then d...
2001-10-10 22:27:22
1,002,770,000
resolved fixed
4b3b5fe
1,016,580,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
6,363
2,046
Bug 2046 org.eclipse.ui.plugin.AbstractUIPlugin.loadDialogSettings() is using URLgetFile() (1GDTWUZ)
org.eclipse.ui.plugin.AbstractUIPlugin.loadDialogSettings() is using URLgetFile() this will fail when the install directory is not local see initializePluginPreferences for an example of using a stream NOTES:
2001-10-10 22:25:19
1,002,770,000
resolved fixed
8bbd188
1,016,570,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/plugin/AbstractUIPlugin.java
Eclipse_Platform_UI
6,364
11,484
Bug 11484 [Contributions] Contributions are being rebuilt too often
This started out as an investigation to see if we were reading image files multiple times and ended up exposing bigger problems. If you open two java editors and switch between them you will notice that the perspective .gif files are being read every time the editor changes. This turns out to be the result of calling C...
2002-03-15 12:50:56
1,016,210,000
resolved fixed
ffa8a27
1,016,230,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/SubActionBars.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ViewActionBars.java
Eclipse_Platform_UI
6,365
10,925
Bug 10925 TVT - The word "Misc" is not translated
This problem was found by the Simplified Chinese tester. 1) Click on a file in the navigator. 2) In the property sheet, press Show/Hide Categories so that it is depressed. 3) In the category "Misc" appears, without translation. I tested this with Spanish, and it was also not translated. So this is not a Simplified Chin...
2002-03-07 02:12:43
1,015,490,000
resolved fixed
c8da5a4
1,015,890,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/properties/PropertySheetViewer.java
Eclipse_Platform_UI
6,366
10,757
Bug 10757 ClassCast when I hit F1
20020304-N Win2K I created a Java project. Have opened Java package wizard. Hit F1 on first page. Get internal error. Log: Tue Mar 05 08:55:51 EST 2002 4 org.eclipse.ui 0 org.eclipse.ui.help.DialogPageContextComputer java.lang.ClassCastException: org.eclipse.ui.help.DialogPageContextComputer at org.eclipse.ui.help.Work...
2002-03-05 08:58:46
1,015,340,000
resolved fixed
9d35840
1,015,880,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/properties/PropertySheetPageContextComputer.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/help/DialogPageContextComputer.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/help/ViewContextComputer.java bundles/org.eclipse.ui/Eclipse U...
Eclipse_Platform_UI
6,367
10,689
Bug 10689 Can't use [ESC] key to cancel "Navigator Filters" window
1. pull down the menu on the navigator view 2. select 'Filters ...' 3. hit escape, the dialog doesn't go away
2002-03-04 12:08:04
1,015,260,000
resolved fixed
5359c99
1,015,880,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/FilterSelectionAction.java
Eclipse_Platform_UI
6,368
9,872
Bug 9872 Change fast view contribution to keep track of associated view
null
2002-02-14 18:04:47
1,013,730,000
resolved fixed
71d5f14
1,015,870,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ShortcutBarPart.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ShowFastViewContribution.java
Eclipse_Platform_UI
6,369
10,916
Bug 10916 Perspective buttons on left hand side should not toggle
Click on the button for the currently active perspective in the toolbar on the left. Notice that it toggles from pushed to unpushed! I would expect these buttons to behave more like a radio button and ensure exactly one button is selected at a time.
2002-03-06 19:36:41
1,015,460,000
resolved fixed
24b4e7c
1,015,610,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/SetPagePerspectiveAction.java
Eclipse_Platform_UI
6,370
10,997
Bug 10997 All Views are in 'Other' category
I20020307 Show View->Other Expand all the categories. They are all empty except 'Other' which contains *all* views.
2002-03-07 16:39:42
1,015,540,000
resolved fixed
440f514
1,015,600,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/registry/Capability.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/registry/CapabilityCategory.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/registry/CapabilityRegistry.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/intern...
Eclipse_Platform_UI
6,371
10,685
Bug 10685 RefactorActionFactory refers to internal class TextActionHandler
Build 20020228 RefactorActionFactory refers to TextActionHandler which is an internal class. Standard components like the Navigator must not refer to internal classes.
2002-03-04 11:34:23
1,015,260,000
closed fixed
3bda9f0
1,015,520,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/RefactorActionFactory.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/RenameResourceAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/TextActionHandler.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse...
Eclipse_Platform_UI
6,372
10,514
Bug 10514 Closing 1 Perspecive closes them all, until opening any back up
Eclipse Drop: December 19th Stable OS: Solaris 2.7 w/ Sun Recommended Patches HW: Sun Ultra 60 JRE: Sun 1.3.1 Motif: 2.1 CDE: 1.3 To Reproduce: Open a few Persepctives (Java, Resources, Debug, etc) Perspective -> Close Notice that the current Perspective is closed and none replaces it. Notice that there are no Perspect...
2002-02-28 14:33:40
1,014,920,000
resolved fixed
643b6a2
1,015,520,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/CloseAllPagesAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/CloseAllPerspectivesAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ClosePageAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ClosePersp...
Eclipse_Platform_UI
6,373
8,511
Bug 8511 Cannot mark a task as completed without the mouse
The only place that a task can be marked as completed is via a double click on the completed check box. Ditto for setting the severity. This should be addressed when the table navigation is implemented.
2002-01-25 16:20:54
1,011,990,000
resolved fixed
b894aff
1,015,440,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/tasklist/MarkCompletedAction.java bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/tasklist/TaskList.java
Eclipse_Platform_UI
6,374
10,826
Bug 10826 Switching to update perspective causes JVM exit on next launch
Using intergration build 20020305. eclipse-platform-20020325-win32.zip F:\installtst\eclipse>java -version java version "1.3.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0) Classic VM (build 1.3.0, J2RE 1.3.0 IBM build cn130-20010925 (JIT enabled: jitc) Switching to the Install perspective and shuttin...
2002-03-05 22:54:47
1,015,390,000
resolved fixed
29e3783
1,015,430,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorWorkbook.java
Eclipse_Platform_UI
6,375
9,721
Bug 9721 Performance: avoid writing empty preference files
(After conversation with RG) A plug-in's preference store is being written to a file even when there are no preference setting to remember. This is pointless and wasteful. Instead, when a plug-in's preference store does not contain any genuine entries, no file should be written (an existing file must be deleted). This ...
2002-02-13 13:30:55
1,013,630,000
resolved fixed
f14ba18
1,014,930,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/preference/PreferenceStore.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/help/WorkbenchHelp.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/plugin/AbstractUIPlugin.java
Eclipse_Platform_UI
6,376
4,378
Bug 4378 IMemento#getString(String) removes formatting
If a String with formatting (tabs, new lines) is stored into an IMemento using putString(String, String), when the String is retrieved during IViewPart#init (IViewSite, IMemento), the "control" characters have been replaced with spaces. Currently impacts the Debugger DisplayView
2001-10-11 10:27:42
1,002,810,000
resolved fixed
bea91ea
1,014,920,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/IMemento.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/XMLMemento.java
Eclipse_Platform_UI
6,377
7,406
Bug 7406 NPE: adaptable and filters don't work together for property page contributions
If a property page contribution is filtered by project nature, and its marked as adaptable, the filter is ignored for the adapted case. Specifically, our CVS property page shows up on non-CVS Java Projects. As a result, the following steps in our 2.0 work will cause a NPE: 1. Open the property dialog on a Java project ...
2002-01-09 18:08:44
1,010,620,000
resolved fixed
7114c64
1,014,910,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java
Eclipse_Platform_UI
6,378
9,799
Bug 9799 Browse must be clicked twice in file import wizard
Build 20020212 1) File->Import->File System 2) Type a value in the directory selection combo at the top 3) Click Browse - directory dialog does not come up, instead it updates the list and tree below 4) Click browse a second time - now the dialog comes up. It looks like the checkbox tree is stealing focus when the butt...
2002-02-13 18:16:47
1,013,640,000
resolved fixed
e34d574
1,014,730,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/wizards/datatransfer/WizardFileSystemResourceImportPage1.java
Eclipse_Platform_UI
6,379
9,457
Bug 9457 A fatal error happened while informing the user about a fatal error.
Build 20020205 While performing a build, I got a NullPointerException in the junit plugin. This opened an error dialog, but this caused another NPE, and another error dialog to be opened, etc. I had to kill the workbench.
2002-02-12 10:29:28
1,013,530,000
resolved fixed
58763f6
1,014,670,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ExceptionHandler.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/InternalErrorDialog.java
Eclipse_Platform_UI
6,380
9,039
Bug 9039 New Project Wizard; don't use default 2
- Deselect "Use default" - Select an arbitrary location; say "/test" - Select "Use default" again (say you unfortunately missed the text box by a few pixels and hit the check box's label instead -- it's just a matter of 10 pixels) - Deselect "Use default" a second time - Observe: "Directory" is empty again One would ex...
2002-02-04 11:23:42
1,012,840,000
closed fixed
a8d7b39
1,014,410,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java
Eclipse_Platform_UI
6,381
9,004
Bug 9004 Editor rearranges its location by itself
stable: 20020125 Normal Steps Leading Up To It: 1 Open an editor on A.txt 2 Go to the windows file system, and edit A.txt (and save your change). 3 Go back to eclipse 4 Click on the outline view 5 Click on editor tab of A.txt 6 You will get prompted to load the changs made to the file. 7 Say YES 8 The file editor corre...
2002-02-02 17:26:37
1,012,690,000
resolved fixed
13603fe
1,013,810,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PartDragDrop.java
Eclipse_Platform_UI
6,382
8,525
Bug 8525 Dialog page resizing
I encountered the following problem which I think might be common to other people: I have a wizard page (dialog page) that displays fine in english but for NL platforms (ex. German, French, Italian) the description of the page doesn't fit anymore, it allows only 2 lines of text, so the page has to be resized somehow ac...
2002-01-25 19:28:22
1,012,000,000
closed fixed
305c94c
1,013,720,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/dialogs/TitleAreaDialog.java
Eclipse_Platform_UI
6,383
9,370
Bug 9370 "Open Recent" menu remains disabled when closing file
-start an inner Eclipse (or run with a build >0205, that has the open recent menu). -open three files -close the second editor -check the "Open Recent" menu, it is disabled -close another editor ->the open recent menu has two entries
2002-02-10 17:02:53
1,013,380,000
resolved fixed
ea48216
1,013,720,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/DynamicMenuManager.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchActionBuilder.java
Eclipse_Platform_UI
6,384
8,566
Bug 8566 Column widths in Editor chooser not remembered
In the Editor chooser (Window -> Switch to Editor), in the table of editors, changes to the column widths are not remembered for the next time you open the chooser.
2002-01-27 14:59:34
1,012,160,000
resolved fixed
d586762
1,013,720,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchEditorsDialog.java
Eclipse_Platform_UI
6,385
6,971
Bug 6971 Accelerator for Pin Editor?
Is there a keyboard accelerator for toggling the pin state of the editor? I know there is the toolbar item but I can't determine what the shortcut is. The accessibility chart on the UI page does not list it either.
2001-12-14 20:24:05
1,008,380,000
resolved fixed
e5bfe7a
1,013,700,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorPane.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PartPane.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PinEditorAction.java
Eclipse_Platform_UI
6,386
9,625
Bug 9625 Missing message and typo: Perspectiver.couldNotCreateAllViews
Build 20020212 - grabbed new build - switched to team 2.0 - ran it pointing to old workspace - got error dialog for being unable to create vcm views - its message was: Perspectiver.couldNotCreateAllViews
2002-02-13 10:23:48
1,013,610,000
resolved fixed
e15f04d
1,013,620,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
6,387
7,130
Bug 7130 Pin button should be after action sets
null
2001-12-20 09:56:00
1,008,860,000
resolved fixed
05a6dc2
1,013,550,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchActionBuilder.java
Eclipse_Platform_UI
6,388
8,258
Bug 8258 Error message not nice when view is missing on startup
If you remove a plugin that defined a view that was open on shutdown, you get an unfriendly message just stating that an error occurred (see error log, etc). For example, turn off the plugin org.eclipse.vcm.ui. This case is common enough that the error message should be more informative. It should say which view it fai...
2002-01-23 14:53:08
1,011,820,000
resolved fixed
c8e7074
1,013,530,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
6,389
2,165
Bug 2165 Folder selection dialog is too small (1GE8REP)
Open the import wizard and select zip import Press the lower browse button The browse folder dialog is too small NOTES:
2001-10-10 22:27:46
1,002,770,000
resolved fixed
31bb94f
1,013,520,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/ContainerSelectionDialog.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/misc/ContainerSelectionGroup.java
Eclipse_Platform_UI
6,390
8,514
Bug 8514 ConcurrentModificationException opening out of sync file
Build 20020125 1) Open a new workbench 2) Create a java project (this switches to java perspective) 3) Creat a text file in that project 4) Close the text file editor 5) In the filesystem, delete the text file 6) Switch to the resources perspective (using the perspectives combo box) 7) Double click on the text file in ...
2002-01-25 17:04:03
1,012,000,000
resolved fixed
975f0c4
1,013,460,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/SelectionListenerAction.java
Eclipse_Platform_UI
6,391
2,138
Bug 2138 Go to resource dialog is too small (1GE8H7O)
The go to resource dialog on the navigator popup is too small when it opens. NOTES:
2001-10-10 22:27:15
1,002,770,000
resolved fixed
d0a3b69
1,013,450,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/GotoResourceDialog.java
Eclipse_Platform_UI
6,392
9,315
Bug 9315 Task list update is slow when switching selection
Build 20020205 - certain projects had 100s of errors (due to CVS resource conflicts) - had task list filters set to show all tasks in same project - update when changing from a projects with many errors to a project with no errors is very slow -- the removal of items in the task list is visible (animated)
2002-02-08 11:17:22
1,013,190,000
resolved fixed
18a73f7
1,013,210,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/tasklist/TaskList.java
Eclipse_Platform_UI
6,393
7,135
Bug 7135 Export to file system should preselect active editor file
build 20011206 When I do an export to file system and I have a file open and active in the editor I would expect that file to be preselected. It currently is not.
2001-12-20 11:21:01
1,008,870,000
closed fixed
abcf0a1
1,013,120,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/wizards/datatransfer/FileSystemExportWizard.java
Eclipse_Platform_UI
6,394
2,797
Bug 2797 Confusing: inner windows active when outer inactive (1GJN8KU)
When looking at an inactive eclipse workbench the title is grey to indicate that it is not active but the inner windows (viewparts) remain in the active color (usually the gradiant blue). This is confusing since a cursory look at the window indicates that it is active and then after trying to do something like pressing...
2001-10-10 22:43:45
1,002,770,000
resolved fixed
c0e57fd
1,013,120,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorPane.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorWorkbook.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/LayoutPart.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/PartPane.java bundles/org.eclipse.ui...
Eclipse_Platform_UI
6,395
2,535
Bug 2535 [UI] Import from zip progress bar inaccurate (1GFL1W5)
The import from zip progress bar reaches 100% before importing all the files. NOTES:
2001-10-10 22:38:18
1,002,770,000
closed fixed
1078fc6
1,013,110,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/wizards/datatransfer/ImportOperation.java
Eclipse_Platform_UI
6,396
9,045
Bug 9045 New file and folder wizards don't handle selected Java elements
Build 20020129 - select a Java package - choose File / New / File. - the selected folder is not filled in Looks like SelectionEnabler does not properly handle IAdaptables.
2002-02-04 12:24:39
1,012,840,000
closed fixed
096c696
1,013,100,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/NewWizardShortcutAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardElement.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardNode.java
Eclipse_Platform_UI
6,397
8,822
Bug 8822 [Serviceability] Add button to show log from error dialog
Build 20020125 The error dialog should have a button which will show the error log. Simply opening it an editor would be one option. Or in its own simple shell with text widget (need to handle large files though). The minimal requirement is that it support cut. May need to add error handling hooks to JFace to do this, ...
2002-01-31 08:43:12
1,012,480,000
resolved fixed
17cc939
1,013,040,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ExceptionHandler.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/InternalErrorDialog.java
Eclipse_Platform_UI
6,398
9,160
Bug 9160 Decorators: NULL handles in decorateImage and decorateText
I-20020205 The text and image handles for the ILabelProvider methods are now being passed as null. This means that when you turn on the CVS decorator, the labels in the resource names navigator dissapear. Instead all you see is " 1.5" the revision numbers. Also, why is the image being passed as null, it has always been...
2002-02-06 07:56:50
1,013,000,000
closed fixed
f8af8bf
1,013,020,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/DecoratorManager.java
Eclipse_Platform_UI
6,399
2,120
Bug 2120 MRU File List is not persisted between sessions (1GE71Z0)
1. Start workbench. 2. Open 2 or 3 files. 3. Notice how files appear in File menu MRU list. 4. Shutdown workbench. 5. Restart. 6. Notice how files do not appear in File menu MRU list. These files should be persisted between sessions. NOTES: DS (5/23/01 3:36:30 PM) Note: We should be using the IPersistableElement. Do no...
2001-10-10 22:26:53
1,002,770,000
resolved fixed
6d8bb2e
1,013,020,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorHistoryItem.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/IWorkbenchConstants.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ReopenEditorMenu.java...
Eclipse_Platform_UI
6,400
7,672
Bug 7672 Need public access to GlobalBuildAction
To leverage some code needed to do a correct build I want to reuse the GlobalBuildAction. Can you please make this action public.
2002-01-16 06:39:18
1,011,180,000
resolved fixed
52a4a4d
1,012,950,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/GlobalBuildAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/GlobalBuildAction.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchActionBuilder.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/Workben...
Eclipse_Platform_UI
6,401
9,030
Bug 9030 NPE opening perspective on folder
Build 2002-01-29 - Select a folder in the navigator view (such as org.eclipse.ui/icons) - Right click, Open Perspective -> Java - An error occurs creating the view. The following is in the log: 2 org.eclipse.ui 2 Problems occurred when invoking code from plug-in: org.eclipse.ui. java.lang.NullPointerException at org.ec...
2002-02-04 10:06:25
1,012,840,000
resolved fixed
b8006d7
1,012,940,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/DecoratorManager.java
Eclipse_Platform_UI
6,402
2,188
Bug 2188 OLE editor does not re-paint its toolbar until editor is activated. (1GEAE3P)
1) create a doc file. 2) create a bmp file. if you switch bettween editors if works file but if you go to the navigator and switch the selected file the content of the file is re-painted in the editor but the toolbars, status bar,etc are not. NOTES: EJP (5/25/01 10:55:17 AM) I understand it is a bit related to our mode...
2001-10-10 22:28:16
1,002,770,000
closed fixed
1bf57aa
1,012,940,000
bundles/org.eclipse.ui/Eclipse UI Editor Support/org/eclipse/ui/internal/editorsupport/OleEditor.java
Eclipse_Platform_UI
6,403
2,913
Bug 2913 Readme example prefs missing mnemonics (1GKM5TU)
The readme example could have mnemonics on its preference page. It's acceptable for 1.0 though. For more details see 1GGYVZI: ITPUI:WIN - Hot key should be placed on the command buttons in Preferences page NOTES:
2001-10-10 22:46:03
1,002,770,000
resolved fixed
bde1c60
1,012,860,000
examples/org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool/ReadmeEditor.java
Eclipse_Platform_UI
6,404
2,734
Bug 2734 Can't resize fast view. (1GIRSG0)
Drop a view over the shortcut toolbar. Maximize the window. Make the fast view bigger (95% of the window size). Restore the window size. You can't resize the fast view anymore unless you maximaze the window again. The same happens when making the window smaller. Maybe you could keep a ratio and change the fast view siz...
2001-10-10 22:42:27
1,002,770,000
resolved fixed
0e6f617
1,012,860,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
6,405
5,667
Bug 5667 TVT: Reset Defaults button on resources Properties is misleading
From our TVT testers, a very minor nit: If you open a doc, the default setting is with the "Read only" option unselected. If you set it, and click on Apply, if you then click on Reset Defaults, it doesn't reset the check-box as unselected. This may be a "generic" button, but in this context, the button should either be...
2001-11-08 11:48:03
1,005,240,000
resolved fixed
e70f074
1,012,860,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/ResourceInfoPage.java
Eclipse_Platform_UI
6,406
8,864
Bug 8864 Goto Resource dialog redraws too much
On every keystroke the GoTo resource dialog redraws. This needs to be fixed. Take a look at the equivalent dialog in the packages view. It does not flicker as much
2002-01-31 14:25:52
1,012,510,000
resolved fixed
ae8ba14
1,012,610,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/GotoResourceDialog.java
Eclipse_Platform_UI
6,407
5,974
Bug 5974 Can size parts so small they're invisible
Build 20011112. By dragging sashes, you can resize views and editors so small they're invisible. We should set a minimum size.
2001-11-15 12:12:46
1,005,840,000
resolved fixed
519e6a4
1,012,590,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/LayoutPartSash.java
Eclipse_Platform_UI
6,408
2,355
Bug 2355 AbstractUIPlugin.initializeImageRegistry is final (1GETC7J)
The spec for AbstractUIPlugin.initializeImageRegistry(ImageRegistry) says it can be overridden, but it's marked final. This is a little cruel. NOTES:
2001-10-10 22:34:46
1,002,770,000
resolved fixed
081b26a
1,012,590,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/plugin/AbstractUIPlugin.java
Eclipse_Platform_UI
6,409
6,827
Bug 6827 Delete project reports "internal errors" with normal use case
1) Create a java project "Foo", containing file "abc.txt" 2) In the filesystem, delete "abc.txt". 3) In the packages view, select project "Foo" and hit delete. 4) To the delete content question, click "Yes". An error dialog pops up. message: Unexpected exception. See log for details. Reason: Status. Details: Resource i...
2001-12-11 17:37:47
1,008,110,000
resolved fixed
9782eeb
1,012,580,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/DeleteResourceAction.java
Eclipse_Platform_UI
6,410
2,367
Bug 2367 add bookmark accepts empty string but does nothing (1GEUL6T)
AK (6/5/01 2:35:19 PM) you can put an empty string as a bookmark name - but the action does nothing then. emoty string should not be allowed. NOTES: GDA (6/5/01 12:08:06 PM) Defer. Not clear this is a JUI issue? Move to ui for kh to handle.
2001-10-10 22:35:02
1,002,770,000
resolved fixed
b6bb679
1,012,580,000
bundles/org.eclipse.ui/Eclipse UI Text Editor/org/eclipse/ui/texteditor/MarkerRulerAction.java
Eclipse_Platform_UI
6,411
8,629
Bug 8629 Window previous view - opens in mystery place
Stable Build: 20020125 Choose Window > Navigation > Previous View (or Next View) It opens a small hovering popup with which there are several problems 1) The popup appears somewhere randomly in the middle of the screen and not where the users attention is currently focused (i.e. near the menu bar) 2) You should be able...
2002-01-28 15:15:54
1,012,250,000
resolved fixed
bb91279
1,012,520,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/CyclePartAction.java
Eclipse_Platform_UI
6,412
5,147
Bug 5147 [JFace] DialogSettings convenience methods do not check for null
In DialogSettings, convenience methods like getBoolean() do not check for null. They just call getString(String) then try to convert. This method can return null, though.
2001-10-22 12:27:28
1,003,770,000
resolved fixed
8e081e5
1,012,500,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/dialogs/DialogSettings.java
Eclipse_Platform_UI
6,413
8,499
Bug 8499 NPE in WorkbenchPage#findView from debugger
Build 20020123 - launched eclipse-in-eclipse in debug mode (auto switch to debug perspective) - it hit a breakpoint - I double-cliked on the breakpoint in the editor to remove it. - internal error log: java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPage.findView(WorkbenchPage.java(Compiled Code)) at...
2002-01-25 14:49:32
1,011,990,000
resolved fixed
052ad26
1,012,430,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
6,414
6,650
Bug 6650 [Preferences] Faulty preference page causes all preference pages to fail
Integration Build 20011204. If you hit a bug in a preference page, all other preference pages fail to update until the preference page is closed and reopened.
2001-12-06 13:17:01
1,007,660,000
resolved fixed
1f0b6f3
1,012,420,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/preference/PreferenceDialog.java
Eclipse_Platform_UI
6,415
3,076
Bug 3076 Can't import com and COM (1GFVI53)
- create a folder import1 with a subfolder com that contains a file A.java - create a folder import2 with a subfolder COM that contains a file B.java - create a Java project Test - import import1 into the project. It create package com - now try to import import2 into the project. You get a message saying that folder c...
2001-10-10 22:49:02
1,002,770,000
resolved fixed
fdc44aa
1,012,340,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/wizards/datatransfer/ImportOperation.java
Eclipse_Platform_UI
6,416
4,729
Bug 4729 PreferenceConverter#setValue does not check for "underline" or "strikeout" (1GFJ5UF)
When two font data objects are being compared, the FontData.getStyle() method compares only on BOLD and ITALIC. Therefore, if two font data objects are the same except one has underline (or strikeout) turned on and the other has it turned off, then the #getStyle won't be able to make the difference. In this case, the m...
2001-10-11 14:22:00
1,002,820,000
resolved fixed
b858207
1,012,340,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/preference/PreferenceConverter.java
Eclipse_Platform_UI
6,417
7,534
Bug 7534 Dialog should have getButton(int id)
null
2002-01-14 10:35:28
1,011,020,000
resolved fixed
4135c85
1,012,320,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/dialogs/Dialog.java
Eclipse_Platform_UI
6,418
4,228
Bug 4228 Widget is disposed error (1GKCZQM)
Browsing files in the Java Hierarchy Perspective with the hierarchy view on the workbench sidebar. When I switch between editors using the F3 key on types, I occasionally get an internal error (stack trace below). After the error, I noticed that the outline view stops updating when I switch beween editors. Log: Thu Sep...
2001-10-10 23:08:11
1,002,770,000
resolved fixed
bcb35cf
1,012,250,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/part/PageBookView.java
Eclipse_Platform_UI
6,419
7,761
Bug 7761 [Contributions] Can't distinguish structured selection from text selection
The JDT UI has a couple of global actions (Refactor menu) that work on both a strucutured selection and a text selection. Currently it is not possible to define enablement criterias depending on the type of the selection. I would like to write down something like this: <enablement> <if selection_class= "....ITextSelect...
2002-01-16 11:35:57
1,011,200,000
resolved wontfix
694feef
1,012,250,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/SelectionEnabler.java
Eclipse_Platform_UI
6,420
2,949
Bug 2949 Date format in properties page does not honour Region settings (1GKXBWE)
- select a resource and choose Properties - the date is shown in format: 9/29/01 10:12 PM - in the Regional Options control panel, it has M/d/yyyy as the short date format (e.g. 9/29/2001) and dddd, MMMM dd, yyyy as the long date format (e.g. Saturday, September 29, 2001) - also, the seconds are not displayed in the ti...
2001-10-10 22:46:40
1,002,770,000
closed fixed
f9baaec
1,012,250,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/dialogs/ResourceInfoPage.java
Eclipse_Platform_UI
6,421
7,557
Bug 7557 Properties page unresponsive after reopening
Build: 20020109 After making the Properties view a fast view and then closing it, the view does not respond to mouse clicks when reopened. View remains unresponsive until Eclipse is restarted. Tested in both Java and Resource perspectives. 1. Launch a fresh Eclipse session. 2. Open a Properties view through Perspective...
2002-01-14 13:34:23
1,011,030,000
resolved fixed
bc32560
1,012,250,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/Perspective.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/ViewPane.java
Eclipse_Platform_UI
6,422
5,392
Bug 5392 Eclipse dies without warning
build 205 on Win98. This happened 3 times. 1). I was looking at Java code and selected something in the Outline view and Eclipse died without any warning. No log messages or dialogs. 2). I restarted, opened up the Java class again, clicked around in the Outline and it was ok. Then I clicked on a method in the outline, ...
2001-10-31 13:55:42
1,004,550,000
resolved fixed
687a895
1,012,240,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/part/WorkbenchPart.java
Eclipse_Platform_UI
6,423
6,784
Bug 6784 Reused editor closes fast view
When editor reusing is starting the fast views no longer work correctly. This is because during the reuse process (I guess) the new editor is activated even though it is opened with activate=false. Test Case: 1. Search (text or Java) for something which gives results in different files 2. Make the Search view a fast vi...
2001-12-11 07:15:29
1,008,070,000
resolved fixed
ab4a503
1,012,240,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/internal/EditorWorkbook.java
Eclipse_Platform_UI
6,424
2,252
Bug 2252 Filtering is inconsistent between Navigator and Tasks views (1GEAW0O)
In the Navigator, the selected filters specify which files are -not- shown. In the Tasks view, the filters dialog lets you choose which items -are- shown. NOTES: NE (5/25/01 5:18:26 PM) Recommend changing Navigator filters dialog to be clearer: - title should say "Navigator Filters" - label should say "Hide resources m...
2001-10-10 22:31:56
1,002,770,000
closed fixed
edaa100
1,012,230,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/navigator/FilterSelectionAction.java
Eclipse_Platform_UI
6,425
2,473
Bug 2473 [UI] New File/Folder wizards don't filter '\' character (1GF80YL)
When using the new file/folder wizard, you can enter a name with a back slash. Problems with new file wizard: 1) entering 'abc\' for a filename and clicking finish will not create the file and give an error 2) entering 'abc\xyz' for a filename and clicking finish will create the file with no errors; on the file system ...
2001-10-10 22:37:04
1,002,770,000
resolved fixed
fbc8aba
1,012,230,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java
Eclipse_Platform_UI
6,426
6,083
Bug 6083 Open With menu should use radio items, not checkbox items
Build 20011116. In the Navigator and Packages views, the Open With submenu should use radio items, not checkbox items. Only one item can be selected at a time, therefore radio items are more appropriate.
2001-11-19 16:00:02
1,006,200,000
resolved fixed
b8ecbd3
1,012,190,000
bundles/org.eclipse.ui/Eclipse UI/org/eclipse/ui/actions/OpenWithMenu.java
Eclipse_Platform_UI
6,427
2,642
Bug 2642 Can delete ListViewer.getSelection() (1GHHBK2)
It has the same behavior as StructuredViewer.getSelection(), and doesn't introduce any spec changes. NOTES:
2001-10-10 22:40:33
1,002,770,000
resolved fixed
c569533
1,012,160,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/viewers/ListViewer.java
Eclipse_Platform_UI
6,428
2,498
Bug 2498 TextCellEditor.isSelectAllEnabled() is expensive (1GFBITI)
TextCellEditor.isSelectAllEnabled() does text.getText().length. This is expensive. It's common to have Select All enabled even when the widget is empty. Compare with Notepad and Windows Explorer. Should change it to just return true. NOTES:
2001-10-10 22:37:32
1,002,770,000
resolved fixed
f391b1d
1,012,100,000
bundles/org.eclipse.ui/Eclipse JFace/org/eclipse/jface/viewers/TextCellEditor.java
Eclipse_Platform_UI
6,429
2,777
Bug 2777 [UI] Minor: ugly style in ContentOutlinePage (1GJ6IFJ)
ContentOutlinePage creates a tree viewer that has the SWT.BORDER bit set. This looks ugly because it is in the content outline view, and the extra border is not necessary. For example, compare the readme example content outline (which uses the default viewer) to the java content outline (which creates its own widgets),...
2001-10-10 22:43:21
1,002,770,000
resolved fixed
2bbd734
1,012,000,000
bundles/org.eclipse.ui/Eclipse UI Standard Components/org/eclipse/ui/views/contentoutline/ContentOutlinePage.java
Eclipse_Platform_UI