om-11-2024

Results 2 issues of om-11-2024

Fix for `SWTException` on `Table.remove(...)` with a focused row. Cause: `gtk_list_store_remove(...)` for a focused row invokes `Table.cellDataProc(...)` with not-yet-updated `Table.items`. Fix: remove `TableItem` from `Table.items` before `gtk_list_store_remove(...)`. Fixes https://github.com/eclipse-platform/eclipse.platform.swt/issues/1606 This...

**Describe the bug** `SWTException` on `Table.remove(...)` for a row with focus. **To Reproduce** A standalone SWT snippet to reproduce the behavior: ```java import org.eclipse.swt.SWT; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class...