view test/bug-54490.tst @ 28246:c387a55aed05

Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128). * BaseControl.cc (update): Call setEnable(true) when "Enable" switched to "inactive".
author Rik <rik@octave.org>
date Sun, 26 Apr 2020 15:01:41 -0700
parents cc9da21511c1
children 2838bbd84b87
line wrap: on
line source

%!function out = bug54490 ()
%!  global k;
%!  k = 1;
%!  out = 3;
%!endfunction

%!test
%! global k;
%! k = 2;
%! a = [5, 6];
%! a(k) = bug54490 ();
%! assert (a, [5, 3]);
%! k = 2;
%! a = [5, 6];
%! [a(k)] = bug54490 ();
%! assert (a, [5, 3]);
%! clear -global k;  # cleanup after test