Index: /trunk/src/series/civ_input.m
===================================================================
--- /trunk/src/series/civ_input.m	(revision 884)
+++ /trunk/src/series/civ_input.m	(revision 885)
@@ -322,4 +322,7 @@
             set(handle_title_dx,'Visible','off');
         end
+    end
+    if isfield(Param.ActionInput,'Civ2')
+       CheckDeformation_Callback(hObject, eventdata, handles)
     end
 end
@@ -1144,8 +1147,9 @@
 set(handles.ConfigSource,'String','NEW')
 set(handles.OK,'BackgroundColor',[1 0 1])
-if get(handles.CheckDeformation,'Value')
-    set(handles.num_CorrSmooth,'Visible','off')
-else
-    set(handles.num_CorrSmooth,'Visible','on')
+handles_CoorSmooth=findobj(get(handles.Civ2,'children'),'Tag','num_CorrSmooth');
+if get(handles.CheckDeformation,'Value')   
+    set(handles_CoorSmooth,'Visible','off')
+else
+    set(handles_CoorSmooth,'Visible','on')
 end
 
Index: /trunk/src/series/civ_series.m
===================================================================
--- /trunk/src/series/civ_series.m	(revision 884)
+++ /trunk/src/series/civ_series.m	(revision 885)
@@ -977,4 +977,5 @@
 if CheckDeformation
     mesh=0.25;%mesh in pixels for subpixel image interpolation (x 4 in each direction)
+    par_civ.CorrSmooth=2;% use SUBPIX2DGAUSS (take into account more points near the max)
 end
 
@@ -1044,5 +1045,4 @@
                     image2_crop=interp2(image2_crop,xi,yi,'*spline');
                     image2_crop(isnan(image2_crop))=0;
-                    par_civ.CorrSmooth=2;% use SUBPIX2DGAUSS (take into account more points near the max)
                 end
                 sum_square=sum(sum(image1_crop.*image1_crop));
