From 8da8ea57037105be0dc06b05655d85a60c652749 Mon Sep 17 00:00:00 2001 From: Andrew X Stewart <5137405+andrewxstewart@users.noreply.github.com> Date: Thu, 3 Dec 2020 11:21:15 -0800 Subject: [PATCH] ERPLAB 8.10, update SE transparency Set the default value for standard error transparency to 0.7 (so 0.3 opacity). --- GUIs/ploterpGUI.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/GUIs/ploterpGUI.m b/GUIs/ploterpGUI.m index 10ca64de..ae71cf41 100755 --- a/GUIs/ploterpGUI.m +++ b/GUIs/ploterpGUI.m @@ -90,6 +90,8 @@ function ploterpGUI_OpeningFcn(hObject, eventdata, handles, varargin) handles.nchan = nchan; handles.nbin = nbin; +handles.stdalpha = 0.7; + % % Color GUI % @@ -424,6 +426,7 @@ function checkbox_stdev_Callback(hObject, eventdata, handles) set(handles.checkbox_stdev,'Value', 1) set(handles.popupmenu_std_factor,'Enable','on') set(handles.popupmenu_transpa,'Enable','on') + set(handles.popupmenu_transpa,'Value', round(handles.stdalpha*10)+1) valf = get(handles.popupmenu_std_factor,'Value'); if valf==1 set(handles.popupmenu_std_factor,'Value',2) @@ -1398,7 +1401,7 @@ function setall(hObject, eventdata, handles) %meap = 1; pstyle = 1; % 1 =matlab style 1; 2 =matlab style 2; 3= classic; 4= topographic errorstd = 0; % pointer for std factor - stdalpha = 0; % transparency for plotting standard error + stdalpha = 0.7; % transparency for plotting standard error pbox = squareplot(chanArray, hObject, eventdata, handles); %counterbinwin = 1; counterwin = [1 1];