Christoph Läubrich
Christoph Läubrich
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Documentation - [ ] Refactor - [ ]...
The bug was that indent8.len was never set after calling ensureSize() and populating the buffer with System.arraycopy(). This caused indent8.write()to write 0 bytes, resulting in missing indentation beyond level 8....
I currently hit a "bug" that really gives me a hard time to figure out: If one reads a document and an element has `xsi:nil` set, this results in this...
Today I encountered a crash of Eclipse (2023-03) under linux where the last entry in the log was: > Gtk:ERROR:../../../../gtk/gtktreestore.c:596:gtk_tree_store_get_path: assertion failed: (G_NODE (iter->user_data)->parent != NULL) I didn't see any...
Currently when loading a SVG image it always uses the size declared in the document but storing an SVG at the size to load the image is not really sufficient...
Currently we require SWT-UI based tests to be executed by special runners known as the 'UIHarness' to be run in the UI thread, what has several problems: 1) is requires...
**Is your feature request related to a problem? Please describe.** Currently the Display has a way to emit a "beep". In some case an application might not want this to...
Currently SWT is heavy dependent on very generic datatypes (e.g. primitive int or simple containers like [Rectangle](https://github.com/eclipse-platform/eclipse.platform.swt/blob/master/bundles/org.eclipse.swt/Eclipse%20SWT/common/org/eclipse/swt/graphics/Rectangle.java) and [Point](https://github.com/eclipse-platform/eclipse.platform.swt/blob/master/bundles/org.eclipse.swt/Eclipse%20SWT/common/org/eclipse/swt/graphics/Point.java)) and we try to circumvent this limitation with some extensions like...
A `Monitor` can have different DPI setting, and some things (e.g. Fonts [see here for an example](https://github.com/eclipse-platform/eclipse.platform.ui/pull/3212#issuecomment-3280889264)) do not scale linear but SWT currently assume this for scaling. To account...
While testing a custom terminal implementation I noticed that the cursor blinking is always shown at the bottom even if the cursor is positioned somewhere else (and new text is...