Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] Doing forced repaint to SWT Control

I am executing sequence of steps in Display.syncExec
which modifies the widgets state(Eg. removing/adding items in List widget)
But all the paints is happening only after syncExec finished and this problem is leading to someother problem in application.
I have tried following
- Calling update/redraw/layout on shell/widget after widget state is changed.
- Creating separate thread for update call and giving that thread as parameter to syncExec of display
- And many other stuffs.
Note:
I have some swing component also embedded in that shell.



Back to the top