view m-toolbox/m/gui/gltpda/g_UndoButtonCallback.m @ 35:4be5f7a5316f
database-connection-manager
Suppress output messages on preferences loading and saving
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − function g_UndoButtonCallback(varargin)
+ − % Whenever the user clicks on the 'Undo' button.
+ −
+ − global params oldparams paramEnabled oldparamEnabled selBlocks
+ −
+ − temp = paramEnabled;
+ − paramEnabled = oldparamEnabled;
+ − oldparamEnabled = temp;
+ −
+ − paramcommand = g_BuildParamCommand(params);
+ − for kk=1:length(selBlocks)
+ − set_param(selBlocks(kk),'Description',paramcommand);
+ − end
+ − g_AnnotationUpdate(params);
+ −
+ − % This to swap params and params, so it's possible to undo the undo:
+ − temp = params;
+ − params = oldparams;
+ − oldparams = temp;
+ − clear temp;
+ −
+ − ltpdagui('Redraw',2)
+ −
+ − end