# HG changeset patch # User Ben Abbott # Date 1260315640 18000 # Node ID fea3d4868692ba2256cdaa47285f09275d1706af # Parent 4c681ff57bc379da6776b264cd4d2fdcad7002e7 __go_draw_figure__.m: Add missing 'unset multiplot' to restore mouse actions. diff -r 4c681ff57bc3 -r fea3d4868692 scripts/ChangeLog --- a/scripts/ChangeLog Tue Dec 08 15:25:05 2009 -0800 +++ b/scripts/ChangeLog Tue Dec 08 18:40:40 2009 -0500 @@ -1,3 +1,8 @@ +2009-12-08 Petr Mikulik + + * plot/__go_draw_figure__.m: Add missing 'unset multiplot' to restore + hotkey and mouse functionality for 2D plots. + 2009-12-09 Rik * Makefile.am: Distribute DOCSTRINGS in tar.gz file diff -r 4c681ff57bc3 -r fea3d4868692 scripts/plot/__go_draw_figure__.m --- a/scripts/plot/__go_draw_figure__.m Tue Dec 08 15:25:05 2009 -0800 +++ b/scripts/plot/__go_draw_figure__.m Tue Dec 08 18:40:40 2009 -0500 @@ -95,6 +95,7 @@ error ("__go_draw_figure__: unknown object class, %s", type); endswitch endfor + fputs (plot_stream, "\nunset multiplot;\n"); else fputs (plot_stream, "\nreset; clear;\n"); fflush (plot_stream);