09-13-2019 09:02 AM
09-13-2019 05:27 PM
It usually means there is a delay in your user interface loop. Somebody is locking it, for example long calculations, waiting for data, Defer processing until some event completes (in event structure).
09-14-2019 01:04 AM
If you have an event which is triggered by the change in position (for example, to resize elements within the area after the move finishes) you might also benefit from limiting the number of events to 1 in the Events Structure dialog box. I'm not certain this will solve your problem, but it can at least improve latency if you have lots of calculation.
However, it seems like there's no event for the movement of a splitter bar (I could only find mouse events on the splitter, or size changes of the pane, which occur when you release the splitter) so perhaps this isn't that important...
09-16-2019 02:46 AM