Update of output-pane
Hi all. I'm working on a kind of dynamic geometry system which shows its results graphically in an output-pane and numerically in a ygrid table. With every mouse-move event I calculat ndw values, redraw the panel and update the values in the table and then I update the panel and table by: (gp:invalidate-rectangle *geo-panel*) (grid::invalidate-column *object-table* (last-array-elem (slot-value *object-table* 'grid::columns ))) However, the grid updates much more frequently than the panel. My question: If gp:invalidate-rectangle does not not cause redrawing the window directly, how can I force it? Reinhard