octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #34462] Current axes should be listed 1st in t


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #34462] Current axes should be listed 1st in the figure's children
Date: Sun, 02 Oct 2011 23:11:34 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1

URL:
  <http://savannah.gnu.org/bugs/?34462>

                 Summary: Current axes should be listed 1st in the figure's
children
                 Project: GNU Octave
            Submitted by: bpabbott
            Submitted on: Sun 02 Oct 2011 07:11:32 PM EDT
                Category: Plotting
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: None
         Originator Name: Ben Abbott
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: Any

    _______________________________________________________

Details:

The figure's children appear to be listed in the reverse order they are
created. However, if the current axes is changed, it is always listed first.
Example below.


clf
h1 = axes

h1 =  174.5165

h2 = axes

h2 =  175.5175

get (gcf, 'children')

ans =

  175.5175
  174.5165

axes (h1)
get (gcf, 'children')

ans =

  174.5165
  175.5175


Perhaps a listener should be added the the "currentaxes" property of each
figure as they are created.




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?34462>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]