# HG changeset patch # User Rik # Date 1461295187 25200 # Node ID 6459479840bad1f82de41557d22d3e32a1ca95f6 # Parent 3d99ba3d08c1545ad15d3eed4b9bccc0327eee55 Restore rotate capability for FLTK toolkit (bug #47698). * __init_fltk__.cc: Invert logical test for legend so that legends cannot be rotated. diff -r 3d99ba3d08c1 -r 6459479840ba libinterp/dldfcn/__init_fltk__.cc --- a/libinterp/dldfcn/__init_fltk__.cc Thu Apr 21 16:35:54 2016 -0400 +++ b/libinterp/dldfcn/__init_fltk__.cc Thu Apr 21 20:19:47 2016 -0700 @@ -1642,7 +1642,7 @@ (ax_obj.get_properties ()); // Don't pan or rotate legend - if (ap.get_tag () == "legend") + if (ap.get_tag () != "legend") { if (rotate_enabled ()) view2status (ax_obj);