view m-toolbox/m/gui/gltpda/g_UndoButtonCallback.m @ 33:5e7477b94d94 database-connection-manager

Add known repositories list to LTPDAPreferences
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
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