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

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

[Octave-bug-tracker] [bug #41573] Reparenting axes do not cause figure t


From: Andreas Weber
Subject: [Octave-bug-tracker] [bug #41573] Reparenting axes do not cause figure to be re-drawn
Date: Tue, 19 Aug 2014 14:14:57 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0 Iceweasel/30.0

Follow-up Comment #9, bug #41573 (project octave):

@Rik: Thank you for your explanation. The reason for this behaviour is that
the property currentaxes for figure 1 is still empty after the parent is
changed:


figure (1); figure (2);
li = plot (1:10); ax = gca ();
set (ax, "parent", 1);

# This returns [](0x0)
get(1, "currentaxes")

# This calls fltk_graphics_toolkit::update with ID_CURRENTAXES
# which shows the canvas
set(1, "currentaxes", ax)


Is it okay that figure 1 "currentaxes" is empty after "set (ax, "parent", 1)"
?

    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Nachricht gesendet von/durch Savannah
  http://savannah.gnu.org/




reply via email to

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