# HG changeset patch # User Ben Abbott # Date 1224512611 14400 # Node ID 6ef647359f076a1864bf22d0ddb35d5b07f923fc # Parent 52f2fba4f3f8ce1917d485253ce99667588516d2 __stem__.m: Respect new ordering of children when setting baseline. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2008-10-20 Ben Abbott + + * plot/__stem__.m: Respect new ordering of children when setting + baseline. + 2008-10-20 David Bateman * plot/plotyy.m: Test that an axes handle actually is one before @@ -19,7 +24,7 @@ * testfun/rundemos.m: New function. -2008-10-16 Ben Abbott +2008-10-16 Ben Abbott * plot/contourf.m: Correct order of patch object handles. @@ -99,7 +104,7 @@ colorbar. Don't break in search of overlapping axes to delete. Set both the position and the outerposition. -2008-10-09 Ben Abbott +2008-10-09 Ben Abbott * plot/__axis_label__.m: Inherit font properties from axes. diff --git a/scripts/plot/__stem__.m b/scripts/plot/__stem__.m --- a/scripts/plot/__stem__.m +++ b/scripts/plot/__stem__.m @@ -497,7 +497,7 @@ yt = get(h, "ydata")(:)'; ny = length (yt); yt = [b0 * ones(1, ny); yt; NaN(1, ny)](:); - set (kids(1), "ydata", yt); + set (kids(end), "ydata", yt); endfunction function update_props (h, d)