# HG changeset patch # User Markus Mützel # Date 1654866593 -7200 # Node ID 06c64a878fc0808e0cc6ea700c51b9a823fa12e5 # Parent 037c1e768b56becd5a815fdb27dbe90bbff070b3 findobj.m: Also report properties with aliased names (bug #62612). * findobj.m: Call "__get__" which returns visible and hidden properties of a graphics object rather than "get" which only returns visible properties. diff -r 037c1e768b56 -r 06c64a878fc0 scripts/plot/util/findobj.m --- a/scripts/plot/util/findobj.m Thu Jun 09 09:00:17 2022 -0400 +++ b/scripts/plot/util/findobj.m Fri Jun 10 15:09:53 2022 +0200 @@ -238,7 +238,7 @@ if (numpairs > 0) match = true (numel (h), numpairs); for nh = 1 : numel (h) - p = get (h(nh)); + p = __get__ (h(nh)); for np = 1 : numpairs fields = fieldnames (p); fieldindex = find (strcmpi (fields, pname{np}), 1);