view test/bug-45351/bug-45351.tst @ 31238:67cad4e8f866

Include graphics objects with hidden handles in axes limit calculation (bug #63095). * libinterp/corefcn/graphics.cc (get_children_limits): Get handles to all axes children including those with hidden handle visibility. Add BIST. * libinterp/corefcn/graphics.in.h (text::update_position): Do not automatically change "zliminclude" property. Axes labels are implemented as text objects, and we don't want their extent to be included in the axis limit calculation.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 24 Sep 2022 11:57:44 +0200
parents f75882347af3
children
line wrap: on
line source

%!shared obj, h1, h2, h3
%! obj = bug45351 ();
%! [h1, h2, h3] = obj.get_handles ();
%!assert <*45351> (obj.bar (1), 'bug45351.foo: 1')
%!assert <*45351> (obj.bar (2), 'bug45351.foo: 2')
%!assert <*45351> (obj.bar (3), 'bug45351.foo: 3')
%!assert <*45351> (h1 (obj, 1), 'bug45351.foo: 1')
%!assert <*45351> (h2 (obj, 2), 'bug45351.foo: 2')
%!assert <*45351> (h3 (obj, 3), 'bug45351.foo: 3')
%!error (obj.h1 (1))
%!error (obj.h2 (2))
%!error (obj.h3 (3))