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

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

[Octave-bug-tracker] [bug #37913] subplot with copyobj inconsistent


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #37913] subplot with copyobj inconsistent
Date: Sat, 15 Dec 2012 16:45:48 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:17.0) Gecko/20100101 Firefox/17.0

Follow-up Comment #6, bug #37913 (project octave):

I can confirm that listeners are triggered only if the value is changed
regardless of the graphics_toolkit:


close all
graphics_toolkit gnuplot
ax = axes ();
markchanged = @(h, foobar, name) set (h, "userdata", [get(h,"userdata");
{name}]);
addlistener (ax, "position", {markchanged, "position"})
set (ax, "position", get (ax, "position"))
set (ax, "position", get (ax, "position").*.5)
res1 = get (ax, "userdata");
close all
graphics_toolkit fltk
ax = axes ();
addlistener (ax, "position", {markchanged, "position"})
set (ax, "position", get (ax, "position"))
set (ax, "position", get (ax, "position").*.5)
res2 = get (ax, "userdata");
assert (res1, res2)





    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Message posté via/par Savannah
  http://savannah.gnu.org/




reply via email to

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