Mercurial > hg > ltpda
annotate m-toolbox/m/gui/gltpda/g_ErrorSelectionInconsistent.m @ 43:bc767aaa99a8
CVS Update
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 11:09:25 +0100 |
parents | f0afece42f48 |
children |
rev | line source |
---|---|
0 | 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 |