Christoph Läubrich

Results 1885 comments of Christoph Läubrich

Current hack in my `org.eclipse.jface.viewers.ILazyTreeContentProvider.updateElement(Object, int)` method; ``` @Override public void updateElement(Object parent, int index) { if(isSwtIssue667()) { System.err.println("Break out because of https://github.com/eclipse-platform/eclipse.platform.swt/issues/667"); return; } .... } private Boolean isSwtIssue667()...

> Any other suggestions? as @SyntevoAlex mentioned if you have some snippet or application one can download to see the problem it would be great, I was not able to...

FYI @akurtakov I finally got a reproducer now, it is not purse SWT an requires JFace and looks a bit clumsy but reproduce the problem reliable for me: ``` package...

#### Observations 1. **Initial Tree Population**: - cellDataProc() gets called for rendering cells - gtk_tree_model_get_path() is called to get paths for items - checkData() triggers SWT.SetData events for virtual items...

Please see general discussion here: - https://github.com/eclipse-platform/eclipse.platform.swt/issues/2613

@merks I would be fine with either way, I'm just sick of people complaining my application has "bugs" while it is a "feature" of platform ;-) So @merks @vogella it...

> > An application could enable or disable it by default just like for any other option. And such an option would be discoverable. > > I like this proposal....

@mickaelistria this still does not solve it for other plugins and I want something that only depends on SWT... if JDT or others ever move ... who knows? Can I...

I added some experiment here, but the format is not trivial: - https://github.com/laeubi/eclipse.platform.swt/pull/15 so if one wants to go that way it could be used as a skeleton and then...

The compilation currently fails because the `MANIFEST.MF` files currently use the `Import-Package: javax.servlet` and this was not migrated to the jakarta namespace. Also dependencies in the [org.eclipse.birt.target.target](https://github.com/eclipse-birt/birt/blob/master/build/org.eclipse.birt.target/org.eclipse.birt.target.target) file needs to...