Skip to content

Commit 1aa5eac

Browse files
committed
correct compilation error display when actions are muted
1 parent 74caea2 commit 1aa5eac

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

MASH-FRET/.release_version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"tag" : "1.1.2",
3-
"prev_commit_hash" : "27536d17"
3+
"prev_commit_hash" : "74caea28"
44
}

MASH-FRET/source/mod_video_processing/coordinates/updateSF.m

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,20 @@
9999
% check for correct compilation of mex file for method Schmied2012
100100
if exist('forloop','file')~=3
101101
h = guidata(h_fig);
102-
if ~h.mute_actions
102+
if h.mute_actions
103103
disp(cat(2,'This spotfinder method can not be used:',...
104104
' problem with mex compilation.'));
105+
% disp('MASH-FRET will proceed to file compilation...');
106+
% try
107+
% mex(which('forloop.c'));
108+
% catch err
109+
% if strcmp(err.identifier,...
110+
% 'MATLAB:mex:NoCompilerFound_link_Win64')
111+
% disp()
112+
% else
113+
% throw(err);
114+
% end
115+
% end
105116
else
106117
setContPan(cat(2,'This spotfinder method can not be ',...
107118
'used: problem with mex compilation.'),'error',...

0 commit comments

Comments
 (0)