Jean-Marc Lasgouttes wrote:
> R> The Menubar update makes the canvas blink for once.
>
> I wish I knew how to fix that. It is probably related with the problem
> of disappearing menu shortcuts (do you see this one too?).
The blinking is caused by an unnecessary redraw of the canvas-text.
I've used gdb for finding that redraw of the canvas and I always
end up at frontends/xforms/Menubar_pimpl.C around line 189:
if (!form_was_frozen) {
fl_unfreeze_form(form);
}
if (!form_was_open)
fl_end_form();
Is the blinking due to a bug in Xforms or is something wrong with
calling these functions at this particular place in the code?
Regards,
Rob.