Commit bc1b3e8f authored by sstucker's avatar sstucker
Browse files

Hotfix: moved aux menu population code before exit to correct initial display

parent 8ce5e7c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1210,6 +1210,7 @@ if isempty(aux.names)
end

% Enable aux gui objects and set their values based on the aux values
set(handles.popupmenuAux, 'string', aux.names);
onoff = get(handles.checkboxPlotAux, 'value');
if onoff==0
    return;
@@ -1220,7 +1221,6 @@ set(handles.popupmenuAux, 'enable','on');
if iAux==0
    set(handles.popupmenuAux, 'value',1);
end
set(handles.popupmenuAux, 'string',aux.names);

hold on
data = aux.data(:,iAux)-min(aux.data(:,iAux));