Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/pspm_data_editor.m
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,14 @@ function RemovePlot(hObject, chan_id)
% handles structure with handles and user data (see GUIDATA)
% UIWAIT makes pspm_data_editor wait for user response (see UIRESUME)
% handles.lbEpochsvarargout{1} = handles.output;
for i = 1:nargout
varargout{i} = []; %#ok<AGROW>
end

if isfield(handles, 'output')
varargout{1} = handles.output;
end

delete(hObject);

function lbEpochs_Callback(hObject, ~, ~)
Expand Down
Loading