comparison m-toolbox/m/gui/gltpda/g_ErrorSelectionInconsistent.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 function g_ErrorSelectionInconsistent(currPanel,varargin)
2 % Recalled whenever the user selects inconsistent multiple blocks
3
4 panelDimens = get(currPanel, 'Position');
5 backColor = get(currPanel, 'BackgroundColor');
6
7 uicontrol('Parent',currPanel,'BackgroundColor',backColor,'Units','pixels','HorizontalAlignment','center','Position',[(panelDimens(4)-300)/2 panelDimens(4)-100-100 300 30],'String','Error: impossible to set unique parameters for the selected blocks','Visible','on','Style','text');
8 end