# HG changeset patch # User Rik # Date 1428620190 25200 # Node ID 76b1168342c067eac13a1caf829b1ce8cfeb301b # Parent 93348b632f32c80737e7f994dc23cf0834d8177f Redraw FLTK figure after zoom operations on linked axes (bug #44719). * __init_fltk__.cc (__fltk_check__): Check status of Vdrawnow_requested and update figure if needed. diff -r 93348b632f32 -r 76b1168342c0 libinterp/dldfcn/__init_fltk__.cc --- a/libinterp/dldfcn/__init_fltk__.cc Thu Apr 09 15:52:00 2015 -0700 +++ b/libinterp/dldfcn/__init_fltk__.cc Thu Apr 09 15:56:30 2015 -0700 @@ -2329,6 +2329,9 @@ { #ifdef HAVE_FLTK Fl::check (); + + if (Vdrawnow_requested) + Fdrawnow (); #else error ("__fltk_check__: not available without OpenGL and FLTK libraries"); #endif