Christoph Läubrich
Christoph Läubrich
That's strange it looks like the factory is asked to handle the run but it actually is not configured to do so (what still gives no clue what are the...
@fedejeanne I think the first thing to find out would be why this is even used for your launch has you configured it to use a terminal session instead of...
As mentioned in the PR I don't think the tab menu is really the right place (also see follwo up PR here why it is problematic: https://github.com/eclipse-platform/eclipse.platform.ui/pull/3197) this will affect...
I noticed the same. Even worse in the History view (that should be pure platform?) it happens that one is unable to select multiple lines and therefore can not squash...
> Theme / css changes??? How that? I have let Copilot [doing some guess here](https://github.com/laeubi/eclipse.platform.swt/pull/16) and it says: ### Root Cause When setBackground() is called on a Tree widget (triggered...
@ptziegler just a wild guess, maybe just always call `defaultBackground()` ``` @Override GdkRGBA getContextBackgroundGdkRGBA () { if (background != null) { defaultBackground(); return background; } else { // For Tables...
@ptziegler what about ``` @Override GdkRGBA getContextBackgroundGdkRGBA () { // When a custom background is set, delegate to Control's implementation // which parses from the CSS provider instead of returning...
@RedeemerSK I think it would be good to include some screenshots / Video in the PR description that shows the new feature. Also this is a rather huge contribution, do...
@sratz as you are running `TestUtilEclipseUI.drainEventQueueAndRunAsyncRunnables` and this happens to call code in `widgets.Tree.cellDataProc` I assume that something is disposed already and then reaches a point wehre invalid / stale...
> But I think SWT should then catch that situation and throw a "already disposed" SWTException and not let the runtime crash. It depends a bit on the case, but...