view test/classes/@Dork/gack.m @ 20806:99eb26310cb3

Update the state of the toolbar after ui* children have been removed *Figure.cc (Figure::EventNotifyAfter): update the state of the toolbar after an ui* children is removed e.g. by clf.
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Sat, 10 Oct 2015 12:48:10 +0200
parents 6fe6ac8bbfdb
children
line wrap: on
line source

function out = gack (in, val)

  if (nargin == 1)
    out = in.gack;
  else
    in.gack = val;
    out = in;
  end

end