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 |
|---|---|---|---|---|---|---|---|---|---|---|
2,561 | 124,208 | Bug 124208 Virtual tree setItemCount(0) has no effect | When setting item count to 0 on windows on a tree item that currently has children, the children are never removed. TestCase: import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; impor... | 2006-01-17 16:39:37 | 1,137,530,000 | resolved fixed | 46f8989 | 1,137,610,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,562 | 112,791 | Bug 112791 Tree.setBackground() does not full span multi-column Tree | - run the snippet below - note that the item background colours do not span from the right of the column 0 text to the end of the column - I'm assuming this isn't native behaviour (?) - creating the Tree with style SWT.FULL_SELECTION makes this work, though its expand/collapse images stand out public static void main(S... | 2005-10-17 10:45:21 | 1,129,560,000 | resolved fixed | 791bb30 | 1,137,600,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,563 | 124,092 | Bug 124092 StyledText's RTF copy/paste broken | I20060110-1026 1. open a text file with the Text editor and add the following text: not.broken not.broken 2. select the two lines 3. copy 4. go into an application that allows RTF pasting 5. paset ==> .broken .broken Other anomalities of missing characters can be seen when playing with larger documents. Note: pasting a... | 2006-01-17 04:53:07 | 1,137,490,000 | verified fixed | 19cccaf | 1,137,530,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,564 | 122,550 | Bug 122550 GDI Object Leak | Eclipse 3.2 M4 Run the following example. Notice that each time the "test" button is pressed, the number of GDI Objects increases. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new RowLayout()); Button b = new Button(shell, SWT.PU... | 2006-01-03 14:22:52 | 1,136,320,000 | resolved fixed | 209440c | 1,137,520,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java | SWT |
2,565 | 123,993 | Bug 123993 SWT_AWT embedded frame doesn't get iconify/decionify events | null | 2006-01-16 12:23:58 | 1,137,430,000 | resolved fixed | acba665 | 1,137,430,000 | bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java bundles/org.eclipse.swt/Eclipse SWT AWT/motif/org/eclipse/swt/awt/SWT_AWT.java | SWT |
2,566 | 123,933 | Bug 123933 drilled to report shows stale data. | I have to reports, report1 shows a list of items and from there I drill to report2, passing an item code. The link code is as follows: <cell id="231"> <data id="232"> <expression name="valueExpr">row["CODE"]</expression> <structure name="action"> <property name="formatType">html</property> <property name="linkType">dri... | 2006-01-16 03:21:33 | 1,137,400,000 | resolved fixed | b474281 | 1,137,430,000 | bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java | SWT |
2,567 | 121,722 | Bug 121722 HTML clipboard transfer does not work on Windows | I have a simple test case that puts both text and HTML onto the clipboard. According to the Windows clipboard viewer, and any application I type 'paste' at, only the text is ending up on the Windows clipboard, not the HTML. | 2005-12-21 08:32:43 | 1,135,170,000 | resolved fixed | 4d4c8f1 | 1,137,430,000 | bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/HTMLTransfer.java | SWT |
2,568 | 123,594 | Bug 123594 Text.setForeground(Color) is ignored with SWT.INHERIT_FORCE | When creating a shell, setting a background color or a background image, and calling shell.setBackgroundMode(SWT.INHERIT_FORCE), child Text widgets ignore calls to setForeground(Color). Tested on WinXP with swt-N20060112, with and without manifest. See attached Snippet. | 2006-01-12 09:20:21 | 1,137,080,000 | resolved fixed | 89b2a25 | 1,137,180,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java | SWT |
2,569 | 122,428 | Bug 122428 Performance on OS X still degrades on 10.4.3 | null | 2005-12-31 15:27:06 | 1,136,060,000 | resolved fixed | 12e45fb | 1,137,170,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java | SWT |
2,570 | 86,825 | Bug 86825 CLabel not correctly captured by WM_PRINT | I use WM_PRINT to capture offscreen controls in one of my application. I notice that all the controls I use are well captured, except CLabel : the font is not taken in account (but images, background color and foreground color are). See my attached image and have a look at a sample java project I wrote to explain the p... | 2005-02-28 09:24:59 | 1,109,600,000 | resolved fixed | b661df8 | 1,137,020,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java | SWT |
2,571 | 123,184 | Bug 123184 Embedded image render error in StyledText | Run below snippet, and you can find that the second embedded image can't be seen. public class Snippet { static StyledText styledText; static String text = "Embedded Image: \u0014\u0014, The second image can't be seen"; static Image[] images; static int[] offsets; static void addImage(Image image, int offset) { StyleRa... | 2006-01-09 22:21:45 | 1,136,860,000 | resolved fixed | 7a44a1c | 1,136,930,000 | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java | SWT |
2,572 | 123,143 | Bug 123143 Drag handle changes to four-way on click | When I hover over a cool item drag handle, it appears as a two-way horizontal arrow. When I single click, the drag handle changes to a four-way arrow. It stays this way -- even after moving the mouse away and back again. It only reverts to the two-way arrow after a drag is started. This is most visible in the draggable... | 2006-01-09 14:40:16 | 1,136,840,000 | resolved fixed | c1ed11f | 1,136,910,000 | bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java | SWT |
2,573 | 121,507 | Bug 121507 font leading (line spacing) excessive for small fonts | The line spacing for small fonts in text editors is much larger in 3.2 builds than in 3.1. Lines are nearly twice as tall for a 9 point font in all builds of 3.2 I've tried; the extra space is blank. This is a definite productivity killer and gives the editors an awkward look. I've only seen this on OS X (doesn't happe... | 2005-12-19 22:43:05 | 1,135,050,000 | resolved fixed | b35f1ec | 1,136,580,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java | SWT |
2,574 | 120,573 | Bug 120573 [implementation] IllegalArgumentException in StyledText | I get IllegalArgumentExceptions from StyledText. I got a couple of them while running org.eclipse.ui.tests.multieditor.MultiEditorTest (see Test Exception). I used CTRL+SHIFT+T(x2) to go to the java file, and received one in the error log (see Error Log Exception). Test Exception: org.eclipse.swt.SWTException: Failed t... | 2005-12-13 09:57:13 | 1,134,490,000 | resolved fixed | 6c60eca | 1,136,500,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,575 | 122,736 | Bug 122736 StyledText - ArrayIndexOutOfBoundsException | Hello I have error when I'm trying to add text using append() method. Bad: for (int i = 0; i <= 5; i++) { int start = styledText.getLineCount() - 1; styledText.append("TITLE : "+ i +"\r\n"); //If you try to use methods like setLineBackground or setLineIndent you will get exceptions, if not - everything works fine style... | 2006-01-05 05:17:31 | 1,136,460,000 | resolved fixed | 41379af | 1,136,490,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java | SWT |
2,576 | 122,496 | Bug 122496 java.lang.ArrayIndexOutOfBoundsException in StyledTextRenderer.setStyleRanges | I found the Bug, because i looking for a printing problem in the Plugin "Eclipse Colorer". Then the function setStyleRanges is called from StyledText$Printing.cacheLineData(StyledText.java:262) and newStyles can be a empty array. Is newStyles a empty array ArrayIndexOutOfBoundsException is throw. old: void setStyleRang... | 2006-01-03 05:01:35 | 1,136,280,000 | resolved fixed | 4f678e6 | 1,136,410,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,577 | 49,267 | Bug 49267 First characters in Text initially not displayed | Hi, In a newly drawed combobox, the first character of the displayed text doesn't appear. If I select the combobox and press Pos1, it looks fine. A place where this bug occurs is the feature.xml editor in the section information. I'll post a screenshot too. | 2003-12-22 08:31:24 | 1,072,100,000 | resolved fixed | 00f5285 | 1,136,410,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java | SWT |
2,578 | 122,433 | Bug 122433 Exception in ImagesList | Eclipse 3.2 M4 JDK 1.5.0_05 java.lang.ArrayIndexOutOfBoundsException: 8 at org.eclipse.swt.widgets.ImageList.indexOf(ImageList.java:314) at org.eclipse.swt.widgets.Tree.imageIndex(Tree.java:1951) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:1402) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:... | 2006-01-01 12:05:57 | 1,136,140,000 | resolved fixed | e4a74c1 | 1,136,320,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java | SWT |
2,579 | 121,903 | Bug 121903 OS.AlphaBlend causes "bddraw" stdout spew | null | 2005-12-22 12:24:51 | 1,135,270,000 | resolved fixed | af911e1 | 1,136,320,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java | SWT |
2,580 | 121,890 | Bug 121890 Canvas and mouseMoveListener and MacOS | * I posted on eclipse.platform.swt: This problem is specific SWT on MacOS. It does not seem to be a problem on Windows or Linux. Here's a program that creates a Table, a Label, and a Canvas, and listens for MouseMoveEvents from all of them. Select a row in the Table, hold the mouse button down, and drag it to the label... | 2005-12-22 10:34:08 | 1,135,270,000 | resolved fixed | a7a4f8c | 1,135,280,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java | SWT |
2,581 | 120,954 | Bug 120954 Background of Control with SWT.INHERIT_FORCE doesn't show through with ToolItems with transparent images | null | 2005-12-14 15:44:56 | 1,134,590,000 | resolved fixed | cb44d9b | 1,135,210,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java | SWT |
2,582 | 120,524 | Bug 120524 drawRoundRectangle draw bad round corner of rectangle. | Hi ! I'm using eclipse 3.1 on Windows XP, when I draw round rectangles sometimes the rounded corners are drawn badly specially when a Transform is used in gc. "badly" means rounded corner circle are not the right ones but "opposite". (see attached picture). Used snippet: package test1; import org.eclipse.swt.events.Pai... | 2005-12-13 03:33:33 | 1,134,460,000 | resolved fixed | 0f32525 | 1,135,200,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java | SWT |
2,583 | 121,729 | Bug 121729 in SWT, javadoc for Table.getColumns does document order | The javadoc for Table.getColumns() should indicate what order the TableColumns are returned in. IE, are they in display order or creation order. Its a minor thing, but its a pain in the ass to have to track it down when you need to know. | 2005-12-21 09:50:26 | 1,135,180,000 | resolved fixed | 075a498 | 1,135,190,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,584 | 121,741 | Bug 121741 Disposing a StyledText disposes its menu? | I pass the same menu into many StyledText controls to get a common context menu. When I dispose one of these, it disposes my menu. I could easily be confused, but it seems to me that this is contrary to the contract of dispose protocols. The StyledText didn't create it, why should it dispose it? | 2005-12-21 11:11:18 | 1,135,180,000 | resolved fixed | 7187333 | 1,135,190,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java | SWT |
2,585 | 120,914 | Bug 120914 Warnings suppressed from GtkFileChooser creation | null | 2005-12-14 12:34:21 | 1,134,580,000 | resolved fixed | a5a8ba2 | 1,135,030,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java | SWT |
2,586 | 120,980 | Bug 120980 Regression: Image on disabled button no longer greyed out | SWT-win32 v3218, Windows XP, Classic Theme, Manifest Run the testcase below. Even though the button is disabled, the icon is unchanged from its "enabled" look, giving no indication that you cannot press the button. In 3.1-final, the icon was greyed out. Not a problem when using the Luna Theme or running without the man... | 2005-12-14 19:50:23 | 1,134,610,000 | resolved fixed | 153d0bb | 1,134,690,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java | SWT |
2,587 | 118,796 | Bug 118796 DirectoryDialog.open does not return choosen directory | When I use DirectoryDialog.open() with Suse Linux 10.0 OSS and SWT-GTK, it does not return the selected directory. Instead it returns the directory I have changed to with the dialog. This behaviour is strange, since the motif dialog (SWT-Motif) does return a selected directory even when I have not changed to it. Also t... | 2005-12-01 05:54:22 | 1,133,430,000 | resolved fixed | 6c386a8 | 1,134,690,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java | SWT |
2,588 | 120,654 | Bug 120654 Cheese in StyledText on Linux | I20051213-0010, GTK+ 2.2.4, pango 1.2.5. See attached screenshot. When clicking around in the Java editor, the lines "shimmer" and often jump up and down. The root cause seems to be the use of TextLayout.getLineHeight(int) to handle dynamic line heights. Special casing fixedLineHeight mode in StyledTextRenderer.drawLin... | 2005-12-13 13:19:39 | 1,134,500,000 | resolved fixed | b4fa378 | 1,134,680,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java | SWT |
2,589 | 118,909 | Bug 118909 Problems with accents using SWT_AWT | We have a big application wich uses Swing and SWT. In our app we have a big trouble with accents in Swing TextFields. When we try to punctuate a bowel, two accents appear in the TextField before the bowel is pressed. In this testcase, you can see our problem : import java.awt.BorderLayout; import java.awt.Panel; import... | 2005-12-01 14:49:57 | 1,133,470,000 | resolved fixed | d349945 | 1,134,600,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java | SWT |
2,590 | 120,176 | Bug 120176 Can't reliably change the cursor during Tracker.open() | Changing the cursor of a tracker requires that we break the X grab and re-grab with the new cursor. In the current code though, you can only do this once, as we seem to never update the "lastCursor" field. | 2005-12-09 16:11:55 | 1,134,160,000 | resolved fixed | 73dff4b | 1,134,160,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java | SWT |
2,591 | 116,121 | Bug 116121 Invalid widget used for gtk_widget_get_accessible | gtk2-2.4.10-4 An SWT app using 3.2M2 (GTK) spits out a lot of these to console: Gtk-CRITICAL **: file gtktreeview.c: line 11861 (gtk_tree_view_set_search_column): assertion `column >= 0' failed 3.2M3 adds a few of these: Gtk-CRITICAL **: file gtkwidget.c: line 7260 (gtk_widget_get_accessible): assertion `GTK_IS_WIDGET ... | 2005-11-12 18:37:47 | 1,131,840,000 | resolved fixed | 02559d5 | 1,133,470,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java | SWT |
2,592 | 118,362 | Bug 118362 StyledText: Top index wrong after selectAll | SWT-win32, N20051127-0010 - Run the testcase below - Expected result: both text lines are visible - Actual result: the first line is scrolled out of view - Does not happen in v3138-v3214 --- import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; pub... | 2005-11-29 00:02:00 | 1,133,240,000 | resolved fixed | 1b04da3 | 1,133,390,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,593 | 116,746 | Bug 116746 ToolItem text is clipped | Head SWT see attached screenshot from ControlExample | 2005-11-16 18:18:18 | 1,132,180,000 | resolved fixed | 213b343 | 1,133,380,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java | SWT |
2,594 | 117,700 | Bug 117700 [open type] Open Type table shows unmotivated ellipsis, disappears on redraw | I20051122-1300 - select text "CharSequence" in a JavaEditor - press Ctrl+Shift+T => An ellipsis (...) is drawn to the right of the first entry in the list. When I move another window on top of the dialog and then move it away, the ellipsis is not redrawn. Dirk, do you have an idea what's happening here? If not, please ... | 2005-11-23 06:25:17 | 1,132,750,000 | resolved fixed | bdb97e1 | 1,133,320,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java | SWT |
2,595 | 118,119 | Bug 118119 Mac: Calling Tree.setItemCount() causes SWTError: Item not removed | [I20051123-1200] When you decrease the item count of a Tree with SWT.VIRTUAL, the following error occurs: Exception in thread "main" org.eclipse.swt.SWTError: Item not removed at org.eclipse.swt.SWT.error(SWT.java:3288) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at org.eclip... | 2005-11-25 19:48:53 | 1,132,970,000 | resolved fixed | a69efc2 | 1,133,300,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java | SWT |
2,596 | 118,378 | Bug 118378 StyledText#computeSize imposes artificial limit on return value | null | 2005-11-29 03:01:13 | 1,133,250,000 | resolved fixed | 97bce29 | 1,133,300,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,597 | 118,241 | Bug 118241 StyledText: getLineHeight(int) and getBaseline(int): code do not match spec | N20051127-0010 The Javadoc says: * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_RANGE when the offset is outside the valid range (< 0 or > getCharCount())</li> While the code tests: if (!(0 <= offset && offset < content.getCharCount())) { SWT.error(SWT.ERROR_INVALID_RANGE); Which one is correct? | 2005-11-28 10:08:33 | 1,133,190,000 | verified fixed | e43ea7f | 1,133,200,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,598 | 118,240 | Bug 118240 StyledText.getBaseline(StyledText.getCharCount()-1)) causes IAE | N20051127-0010 When having something like: 'xxx xxx ' calling StyledText.getBaseline(StyledText.getCharCount()-1)) causes an IAE: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3246) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at... | 2005-11-28 10:06:15 | 1,133,190,000 | verified fixed | 72acb45 | 1,133,200,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,599 | 117,928 | Bug 117928 JDT Text test don't run anymore (out of handles) - works with SWT 3.2 M1 | I20051123-1200 I have the following setup: 1. install I20051123-1200 2. start fresh workspace 3. load org.eclipse.jdt.text.tests checked out from HEAD 4. load all its required test projects from HEAD 5. load org.eclipse.jface.text from HEAD 6. *** only needed to run against SWT from 3.2 M1 - see later step *** - replac... | 2005-11-24 12:16:27 | 1,132,850,000 | verified fixed | 40c0440 | 1,132,950,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java | SWT |
2,600 | 117,816 | Bug 117816 Crash while running JFace test suite | I20051123-1200, UI and SWT from HEAD, GTK+ 2.6.10, KDE 3.4.1, X.org 6.8.2, Linux 2.6.13 It starts with the following failure.... junit.framework.AssertionFailedError: first2 is visible at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNot... | 2005-11-23 21:21:31 | 1,132,800,000 | resolved fixed | 66037f9 | 1,132,940,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java | SWT |
2,601 | 99,381 | Bug 99381 [PerspectiveBar] Alignment of items in perspective switcher when switcher docked to the left is incorrect | Steps to reproduce: 1. Launch Eclipse 3.0.2 SDK 2. From perspective switcher, select Dock On > Left 3. Open a few perspectives - PDE, Java, CVS, etc... 3. On Windows, all the perspectives are left-aligned. However, on linux the perspectives are center-aligned. This looks pretty ugly. Behaviour of perspective switcher o... | 2005-06-10 11:27:55 | 1,118,420,000 | resolved fixed | a1e1381 | 1,132,900,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java | SWT |
2,602 | 117,990 | Bug 117990 Reduce matching complexity of the SWT flat toolbar RC style | The documentation for GtkRC indicates that "*" characters in GTK+ RC files slow down widget creation. Currently we match against: "*swt-toolbar-flat*" This can be reduced to: "*.swt-toolbar-flat" and still work, but with reduced complexity. | 2005-11-24 22:36:10 | 1,132,890,000 | resolved fixed | 3be2fdd | 1,132,890,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java | SWT |
2,603 | 99,461 | Bug 99461 resizing Table can have draw problems | 3.1RC2 noon build, gtk 2.4.13 - run the snippet below, it opens a small window - grab the window's bottom-right corner and make it bigger - this will leave lots of cheese, as shown in the next screenshot - this problem does not happen if the table has no columns public static void main(String[] args) { final Display di... | 2005-06-10 16:13:08 | 1,118,430,000 | resolved fixed | 53c5711 | 1,132,870,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java | SWT |
2,604 | 117,807 | Bug 117807 possible bug in TableItem.setImage (int index, Image image) | This function appears as though it would have a bug in it - basically there appears to be an underlying assumption that the setImage function is used to change an image from one to another. If you use this function to turn on or off an image, it won't redraw correctly. This line of code is the last in the function: red... | 2005-11-23 18:55:36 | 1,132,790,000 | resolved fixed | 1153c53 | 1,132,870,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java | SWT |
2,605 | 117,879 | Bug 117879 NullPointerException from mouse move | Version: 3.2.0 Build id: I20051123-1200 I found this error in my console. No idea what i was doing and nothing bad seemed to happen. java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.wmMouseMove(Widget.java:1919) at org.eclipse.swt.widgets.Control.WM_MOUSEMOVE(Control.java:3637) at org.eclipse.swt.widget... | 2005-11-24 05:57:21 | 1,132,830,000 | resolved fixed | ee86615 | 1,132,860,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java | SWT |
2,606 | 117,757 | Bug 117757 Is TreeItem (.. int hParent, ..) supposed to be public? | I20051122-1300 Is the constructor public TreeItem (Tree parent, int style, int hParent, int hInsertAfter, int hItem) supposed to be public? I guess it should be package-private. | 2005-11-23 12:45:49 | 1,132,770,000 | resolved fixed | 4176736 | 1,132,860,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java | SWT |
2,607 | 74,482 | Bug 74482 Background colour not propagated inside group or tabfolder | null | 2004-09-21 17:15:55 | 1,095,800,000 | resolved fixed | 2818ff5 | 1,132,700,000 | bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java bundles/or... | SWT |
2,608 | 117,195 | Bug 117195 Regression: Shell ignores first mouse-click after dialog closed | SWT-win32, N20051119-0010 - Run the snippet below - Double-click the list - Close the dialog that pops up - Try to click the button or one of the minimize/maximize/close buttons - Note that the first mouse-click is ignored, it does not do anything --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import or... | 2005-11-19 14:09:59 | 1,132,430,000 | resolved fixed | 9747fcc | 1,132,610,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java | SWT |
2,609 | 11,714 | Bug 11714 Non error messages are logged. | After running help and browsring documents, the platform log contains entries with messages from web browser like "No running window found.", or "xmlencoding detect- ISO-8859-1". These are normal , and it would be better if they were not logged to the platform log. | 2002-03-19 16:00:29 | 1,016,570,000 | verified fixed | bf221f6 | 1,132,600,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java | SWT |
2,610 | 117,125 | Bug 117125 Tree with columns shows horizontal scroll bar when it shouldn't | SWT-win32, v3214 The testcase below contains a tree with a single column. When the parent shell is resized, the width of the column is set to exactly fill the available space. It works, but a horizontal scroll bar will appear even though none is needed. For some reason the widget thinks that there is one additional pix... | 2005-11-18 13:55:24 | 1,132,340,000 | resolved fixed | 8e38846 | 1,132,350,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,611 | 104,284 | Bug 104284 GTK warnings when setting item count on VIRTUAL Table before its open | 3.1 - run the snippet below, which sets the item count to 500 - the SetData callback is not invoked for the items that should be initially visible, so the Table appears blank - scroll down and note that it works for item indices > 14 *** if the Table item count is set after the Shell has been opened then the initial 14... | 2005-07-18 17:08:19 | 1,121,720,000 | resolved fixed | 8a9f511 | 1,132,340,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java | SWT |
2,612 | 116,110 | Bug 116110 FileDialog hangs SWT Application | null | 2005-11-12 08:51:10 | 1,131,800,000 | resolved fixed | 937e40a | 1,132,330,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java | SWT |
2,613 | 113,005 | Bug 113005 Table Header stays depressed. | Create an SWT application with a Table and a push Button, the Table must have a column header. 1. Make the push Button receive keyboard focus. This can be achieved by pressing the mouse button inside of the push Button, dragging it outside of the push Button and then releasing the mouse button. 2. Press the mouse butto... | 2005-10-18 17:02:35 | 1,129,670,000 | resolved fixed | 83d76c7 | 1,132,260,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,614 | 116,720 | Bug 116720 GLCanvas doesn't set hint for merging mouse motion events | At least on GTK, the GLCanvas doesn't merge multiple mouse motion events that might happen to be in the event queue. Instead, it floods the listener with lists of old events. Other widgets like Canvas do not show this behaviour. Test case exhibiting this bug is appended. It uses a waiting event handler to facilitate qu... | 2005-11-16 15:37:05 | 1,132,170,000 | resolved fixed | 0cb2304 | 1,132,210,000 | bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java | SWT |
2,615 | 116,688 | Bug 116688 editor cheese after code completion | Build id: I20051115-0800 I am occasionally getting cheese in the editor after inserting code using content assist and organize imports in this build. For example, if I type a class name, and then hit Ctrl+Shift+M to import it, I get some parts of the text pushed down by a line while other parts stay put. I will attach ... | 2005-11-16 11:51:06 | 1,132,160,000 | resolved fixed | 414c5f5 | 1,132,180,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java | SWT |
2,616 | 115,675 | Bug 115675 disappearing checkbox with Windows XP look and feel | null | 2005-11-09 13:44:04 | 1,131,560,000 | resolved fixed | fc9934e | 1,131,990,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,617 | 79,894 | Bug 79894 Control.update() method is too expensive | Our product intensively uses SWT to represent results to user. It may create hundred widgets. Sometimes it uses Control.update() method with "all" set to false. This method takes about 20% of entire time taken by SWT. I profiled the use case and noticed that Display.checkIfEvent() is called about 8 200 times however Co... | 2004-12-01 12:10:50 | 1,101,920,000 | resolved fixed | 4c759d3 | 1,131,840,000 | bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java | SWT |
2,618 | 100,659 | Bug 100659 Dialog displays small sometimes in GTK | null | 2005-06-17 16:12:14 | 1,119,040,000 | resolved fixed | 49869f2 | 1,131,830,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java | SWT |
2,619 | 116,005 | Bug 116005 Cannot type in Text widget in an ON_TOP Shell | null | 2005-11-11 09:29:29 | 1,131,720,000 | resolved fixed | f8dfb27 | 1,131,730,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java | SWT |
2,620 | 115,230 | Bug 115230 Font smooth does not work in Eclipse Forms | null | 2005-11-06 05:33:01 | 1,131,270,000 | resolved fixed | ff167b1 | 1,131,660,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java | SWT |
2,621 | 112,358 | Bug 112358 Need a way to create a new Color based on an existing color | We need a way to create a new color from an existing color by varying the hue, saturation or brightness. | 2005-10-12 12:07:16 | 1,129,130,000 | resolved fixed | 2503053 | 1,131,630,000 | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java | SWT |
2,622 | 107,219 | Bug 107219 Redraw problems on resizing Tree column | Tree cell contents are not redrawing properly in 3.2M1 where: - the tree has visible column headers, and column resizing is enabled - only one column exists When the right hand edge of the column is dragged leftwards, it draws over the cell contents, but the cell is not redrawn. Some content is still visible outside th... | 2005-08-17 11:03:03 | 1,124,290,000 | resolved fixed | db37a37 | 1,131,580,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,623 | 112,454 | Bug 112454 ColorSelector button does not display correctly when first visible | Version: 3.1.0 Build id: I20051012-1200 When the ColorSelector control is appears to show the background of the control behind it. Pressing the alt key or hovering over the button makes it display its correct colour. This can be seen on the ant preference page as well as a few others. See attached screenshot. This was ... | 2005-10-13 06:06:41 | 1,129,200,000 | resolved fixed | 004c286 | 1,131,580,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java | SWT |
2,624 | 115,667 | Bug 115667 Handle leak in TextLayout | 3.2 M3 I am not entirely sure of how handles get managed in SWT, but I think I found a leak in TextLayout.draw(TextLayout.java:324). I noticed that I get frequent "No more handles" SWTErrors in the last couple of weeks. Running Sleak reveals that after a while of editing, there are thousands of Region objects with the ... | 2005-11-09 12:40:36 | 1,131,560,000 | resolved fixed | f68d04f | 1,131,570,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java | SWT |
2,625 | 113,105 | Bug 113105 Table widget does not return table item when #getItem(Point) is called | I have a table that is created with SWT.FULL_SELECTION turned off. I have added a mouse track listener for providing hover support in my view. When the listener gets the event, I tried to locate the table item at which the hover event is fired. I used the method, Table.getItem(Point) to locate the item. My table has mu... | 2005-10-19 11:57:07 | 1,129,740,000 | resolved fixed | a3fbb62 | 1,131,470,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,626 | 115,292 | Bug 115292 NullPE in Tree#_getItem(TreeItem parentItem, int index) | I just released a new version of my reader using latest SWT 3.2 M3 and now I am getting a lot logfiles, looking like this one: java.lang.NullPointerException at org.eclipse.swt.widgets.Tree._getItem(Tree.java:203) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1422) at org.eclipse.swt.widgets.Tree.getItems(Tree.jav... | 2005-11-07 06:53:06 | 1,131,360,000 | resolved fixed | 041ec3d | 1,131,400,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java | SWT |
2,627 | 115,092 | Bug 115092 Snippet 203 doesn't use all texts | I'd guess that the line layout.setText(texts[0]); in SWT snippet 203 should be layout.setText(texts[i]); | 2005-11-04 11:39:04 | 1,131,120,000 | resolved fixed | 33051ac | 1,131,160,000 | examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet203.java | SWT |
2,628 | 115,176 | Bug 115176 Regression: Disabling tool bar makes separator items disappear | SWT-win32, 3.2M3 When calling setEnabled(false) on a tool bar, items with SWT.SEPARATOR style disappear. This did not happen in 3.2M2 and earlier versions. Snippet to reproduce: === import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public cla... | 2005-11-04 18:04:27 | 1,131,150,000 | resolved fixed | ab1753c | 1,131,150,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java | SWT |
2,629 | 113,244 | Bug 113244 Accessibilty...When using JAWS on a StyledText widget the label is not recognized | Accessibilty...When using JAWS on a StyledText widget the label is not recognized like it is with a regular Text widget. | 2005-10-20 11:17:03 | 1,129,820,000 | resolved fixed | 3a71e3f | 1,131,140,000 | bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT C... | SWT |
2,630 | 93,380 | Bug 93380 [DnD] 100% CPU usage when dragging files in the navigator or package explorer | Version: 3.1.0 Build id: I20050419-1200 When i drag and drop a file inside the package explorer or navigator views the CPU says at 100% (or 50% when hyperthreading is enabled). Since the CPU usage doesn't go above 50% my guess is that all of the processing time is spent in the event thread (windows doesn't seem to let ... | 2005-05-01 22:12:38 | 1,115,000,000 | resolved fixed | 32dee67 | 1,131,040,000 | bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java | SWT |
2,631 | 112,463 | Bug 112463 Tree.showColumn doesn't scroll column from left of viewport into view | - run the snippet below - note that the second column begins within the viewport but is too wide to be fully shown - press the button, which invokes Tree.showColumn(col2) -> this brings the second column fully into the viewport; good - now scroll to the right end of the tree and note that the second column now begins t... | 2005-10-13 08:57:29 | 1,129,210,000 | resolved fixed | 862ee59 | 1,131,040,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,632 | 112,345 | Bug 112345 [LayoutExample] Toolbar replacing another widget causes cheese | Version: 3.1.0 Build id: I20050920-0010 - Download SWT examples. - Run LayoutExample as an SWT application. - On the 'control' column, click on one of the of the controls, a drop down list should appear. Choose 'ToolBar' from the list and press 'enter'. Note that the button that was there before is still there and the ... | 2005-10-12 11:09:03 | 1,129,130,000 | resolved fixed | f7eb58f | 1,131,030,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java | SWT |
2,633 | 113,802 | Bug 113802 Dialogs block the execution of (a)syncExecs | Hello.. I surprisingly noticed that opening PrintDialog, FileDialog and DirectoryDialog block the execution of Runnables posted by syncExec() and asyncExec(). On the other hand, the ones posted by timerExec() are still executed! SWT(3138).. what's wrong? best regards Saibel PS: I haven't found any similar postings/bugs... | 2005-10-26 09:23:55 | 1,130,330,000 | resolved fixed | 473d126 | 1,130,970,000 | bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java | SWT |
2,634 | 114,533 | Bug 114533 Editor popup has wrong size | Build: 20051101-0010 All of the [editor/view/perspective] selection popups in this build are sized incorrectly, requiring a vertical scroll-bar no matter how many entries are in the popup. This only started happening with today's build. I will attach a screen shot showing the same editor selection popup with I20051101-... | 2005-11-01 10:23:04 | 1,130,860,000 | resolved fixed | 7bf31dc | 1,130,880,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java | SWT |
2,635 | 114,498 | Bug 114498 Table doesn't send selection change events anymore when selecting elements with the mouse | Version: 3.2.0 Build id: I20051031-2000 In Open Type dialog when Show Status Line is enabled then the status line entry does change if one goes through the entries by pressing up/down key but not if an entry is selected with the mouse. | 2005-11-01 05:54:39 | 1,130,840,000 | resolved fixed | 2617b7e | 1,130,860,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java | SWT |
2,636 | 112,390 | Bug 112390 [Viewers] JUnit error in JFacePerformanceSuite | null | 2005-10-12 15:56:30 | 1,129,150,000 | resolved fixed | c57ed90 | 1,130,800,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java | SWT |
2,637 | 111,798 | Bug 111798 Text#getCaretLocation() replaces selected text by " " iff caret is after last character | I20051004-0800 - select the last few characters of a Text such that the caret is at the very end - call Text#getCaretLocation() => Selection is replaced by a space. => Neither selection nor text should be changed. This can easily be reproduced in Eclipse: - have: void m() { new java.util.ArrayList(); } - select "new ja... | 2005-10-06 11:38:36 | 1,128,610,000 | resolved fixed | da903d0 | 1,130,790,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java | SWT |
2,638 | 110,951 | Bug 110951 Combo.setItem(int, String) does not preserve the selection index | Assume you have a combo with two items, "A" and "B", where "B" is currently selected (i.e. getSelectionIndex() returns 1). If you then call combo.setItem(1,"C"), the combo will be empty and getSelectionIndex will return -1. Why does it not preserve the "selection index"? | 2005-09-28 11:58:24 | 1,127,920,000 | resolved fixed | df5cf3f | 1,130,790,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java | SWT |
2,639 | 114,039 | Bug 114039 Table.computeSize returns bogus Point.y values under Win32 for large tables | Under win32, for tables with lots of rows (>20000), Table.computeSize seems to overrun a native short variable. Test snippet: public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new RowLayout (SWT.VERTICAL)); final Table table = new Table ... | 2005-10-27 18:44:13 | 1,130,450,000 | resolved fixed | 4e3d6fc | 1,130,540,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java | SWT |
2,640 | 98,511 | Bug 98511 Treeviewer doesn't de-select child when parent is closed | This bugs appears in Windows XP. It doesn't seem to occur in Linux. In the following sample code, do the following: 1) Open 'parent2' for example. 2) Click on 'child2'. It becomes selected (also reflected in the window on the right 3) Close 'parent2'. There is currently no selection. 4) Re-open 'parent2'. There is stil... | 2005-06-06 10:20:17 | 1,118,070,000 | resolved fixed | 448e367 | 1,130,530,000 | bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java | SWT |
2,641 | 111,303 | Bug 111303 Cannot middle-button paste to rxvt from Eclipse | Some applications can only deal with XA_STRING when reading from the primary clipboard. Currently, Eclipse only privides UTF8_STRING and COMPOUND_TEXT results. A notable broken example is rxvt, another is xclip, and yet another is eterm. All of these applications only handle the STRING type for middle-button paste. The... | 2005-10-02 13:37:51 | 1,128,270,000 | resolved fixed | 31c97db | 1,130,530,000 | bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java | SWT |
2,642 | 88,724 | Bug 88724 Provide 'since' javadoc in snippets | It would be a useful additional information in some snippets if there were an @since javadoc tag that tells from which version on the snippet will work. For instance, snippet 175 works only from Eclipse 3.1 on, since it uses the GridData.exclude field which was introduced in 3.1 | 2005-03-22 05:47:41 | 1,111,490,000 | resolved fixed | 8e56b85 | 1,130,360,000 | examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet10.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet118.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet119.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet120.java examp... | SWT |
2,643 | 113,895 | Bug 113895 pango_layout_context_changed called too often | StyledTextRenderer often updates the tab size of the layouts cached by DisplayRenderer, even though they usually don't change. Each time this is called, it now triggers a call to pango_layout_context_changed() which invalidates pango's line cache. This causes pango to do a lot of work. A possible fix is to only update ... | 2005-10-26 16:50:50 | 1,130,360,000 | resolved fixed | cea50da | 1,130,360,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java | SWT |
2,644 | 113,172 | Bug 113172 SWT Label widget trancates the text if it contains a long word | null | 2005-10-19 18:51:30 | 1,129,760,000 | resolved fixed | a456d1e | 1,130,350,000 | bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java | SWT |
2,645 | 87,883 | Bug 87883 Remove title bar buttons from application-modal dialogs on Mac | null | 2005-03-13 13:13:28 | 1,110,740,000 | resolved fixed | 1f2cbbd | 1,130,260,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java | SWT |
2,646 | 101,331 | Bug 101331 GC.drawFocus not implemented on the Mac | We need to somehow use DrawThemeFocusRect() or find the equivalent Core Graphics call. | 2005-06-22 15:26:41 | 1,119,470,000 | resolved fixed | 8f7aad6 | 1,130,190,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java | SWT |
2,647 | 100,035 | Bug 100035 Eclipse loses its dock icon when dock restarted | 3.1RC2 The MacOS X dock crashed or restarted for some reason on my Mac laptop. When it reappeared, the icon for Eclipse in the dock and alt-tab list changed to being a boring black "exec" window. | 2005-06-14 14:09:52 | 1,118,770,000 | resolved fixed | 44de4d9 | 1,130,190,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java | SWT |
2,648 | 34,612 | Bug 34612 scroll problem in tree, table, and list | RC2 - open a Java Editor on some non-empty Java file - use Ctrl+O (Show Outline) -> even if the tree is so small that it fits into the widget it has vertical and horizontal scroll bars -> you can scroll the tree completely out of the visible area Closing the outline with ESC makes it reproducible. | 2003-03-11 10:26:24 | 1,047,400,000 | resolved fixed | 25da20b | 1,130,180,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java | SWT |
2,649 | 76,804 | Bug 76804 Improve SWT performance over GTK window system | There are several places in SWT over GTK that may be improved w.r.t performance. I am going to attach a document describing such places and suggested improvements for them. I would like community to review the rpoposal, comment on it and add other problems that relate to the subject if any. Once modification proposals ... | 2004-10-22 08:28:27 | 1,098,450,000 | resolved fixed | 365d9e3 | 1,130,170,000 | bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java bundles/or... | SWT |
2,650 | 113,485 | Bug 113485 Don't flush X exposes for a SMOOTH Sash | For a Sash that uses SWT.SMOOTH, we don't need to flush the Expose events from the X server since we do no XOR drawing. This will also make view resizing smoother since we won't keep waiting for the X server. I tried this change and I like the effects, however it may show some temporary artifacts during resizing that m... | 2005-10-23 16:25:50 | 1,130,100,000 | resolved fixed | 342e38d | 1,130,100,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java | SWT |
2,651 | 41,466 | Bug 41466 Panther: Check and Radio ToolItems don't use correct look | I20030806 Panther (10.3, 7B28) see attached screenshot | 2003-08-13 06:19:58 | 1,060,770,000 | resolved fixed | a33b627 | 1,129,920,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java | SWT |
2,652 | 68,657 | Bug 68657 JUnit test fails for Image.setBackground | In 3.0 RC4: test_setBackgroundLorg_eclipse_swt_graphics_Color(org.eclipse.swt.tests.junit.Test_org_eclipse_swt_gr aphics_Image) junit.framework.AssertionFailedError: background color should have been set to green expected:<Color {0, 255, 0}> but was:<null> at junit.framework.Assert.fail(Assert.java:47) at junit.framewo... | 2004-06-25 14:49:40 | 1,088,190,000 | resolved fixed | 7f9dc81 | 1,129,840,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Image.java | SWT |
2,653 | 113,100 | Bug 113100 Button size test failures in org.eclipse.ui.tests | Test failures have appeared in org.eclipse.ui.tests on MacOS X. The test failures all seem to deal with button sizing issues. These failures started appearing in I20051018-0800, and have continued into N20051019-0010. Note that several builds worth of MacOS X tests leading up I20051018-0800 didn't run. There were netwo... | 2005-10-19 11:21:40 | 1,129,740,000 | resolved fixed | 4d7280c | 1,129,820,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java | SWT |
2,654 | 51,736 | Bug 51736 [JUnit] TreeItem test cases failing | I20040210 - candidate for M7 - on Panther The following test cases are failing: setSelection(int) setTopItem(TreeItem) | 2004-02-11 14:12:27 | 1,076,530,000 | resolved fixed | a5a369c | 1,129,820,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/AllCarbonTests.java | SWT |
2,655 | 112,116 | Bug 112116 Antialiasing causes incorrect drawing | Using Cairo 1.0 and SWT 3.2M2, antialiasing causes incorrect drawing in some situations. It appears things are drawn when moving the raster when it should not actually be in a draw operation. The attached image and code describe this better than I could here in words. | 2005-10-10 11:23:25 | 1,128,960,000 | resolved fixed | 4d9fbf0 | 1,129,780,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java | SWT |
2,656 | 100,696 | Bug 100696 Keyboard fails on MacOS X | Sometimes the keyboard input just stops working in eclipse. It has happened at least three times. The mouse still works, and the keyboard works in other applications. Usually quiting and restarting fixes the problem, but not always. | 2005-06-17 22:40:56 | 1,119,060,000 | resolved fixed | 8254e52 | 1,129,750,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java | SWT |
2,657 | 109,951 | Bug 109951 Mac: Menu Highlight Cheese | null | 2005-09-19 22:51:43 | 1,127,180,000 | resolved fixed | b735777 | 1,129,740,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java | SWT |
2,658 | 112,403 | Bug 112403 window dimensions are tiny | jdk 1.5 (64-bit) I20051011 gtk (64-bit) linux-amd64 when trying to start eclipse, all windows that come up are only a few pixels wide/high, regardless of what the size the window was when closing. this is a blocker because the 'select workspace' dialog is not resizable. since you can't select a workspace, eclipse won't... | 2005-10-12 16:52:34 | 1,129,150,000 | resolved fixed | 8684eb7 | 1,129,740,000 | bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java | SWT |
2,659 | 109,952 | Bug 109952 Mac: Menu Cleared After Shell Restored From Dock | null | 2005-09-19 22:59:13 | 1,127,190,000 | resolved fixed | 8188a5d | 1,129,740,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java | SWT |
2,660 | 102,088 | Bug 102088 Text with CENTER has too much logical space | 3.1 - run the snippet below - the Text shows a horizontal scrollbar that's scrolled to the end, even though the string does not exceed the width of the Text widget - there's also a small strip of cheese near the left edge of the horizontal scrollbar public static void main (String[] args) { String string = "The quick b... | 2005-06-28 16:20:53 | 1,119,990,000 | resolved fixed | 85f1fc5 | 1,129,660,000 | bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java | SWT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.