Skip to content

Commit

Permalink
Fixed merge error
Browse files Browse the repository at this point in the history
Suppressed some output to command line
Fixed some formatting in Advanced Settings GUI
  • Loading branch information
bjack205 committed Mar 18, 2015
1 parent eb5648a commit bdc04c4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
Binary file modified Code/AdvancedSettings.fig
Binary file not shown.
7 changes: 3 additions & 4 deletions Code/AdvancedSettings.m
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,7 @@ function AdvancedSettings_OpeningFcn(hObject, eventdata, handles, varargin)
end
set(handles.DDMethod,'Value',DDSMethodInd);
end
<<<<<<< HEAD
if isfield(Settings,'CalcDerivatives')
=======
if ~isempty(Settings.CalcDerivatives)
>>>>>>> master

set(handles.CalcDerivativesCheckBox, 'Value', Settings.CalcDerivatives)
CalcDerivativesCheckBox_Callback(handles.CalcDerivativesCheckBox, eventdata, handles)
Expand Down Expand Up @@ -1225,6 +1221,9 @@ function SplitDD_Callback(hObject, eventdata, handles)
set(handles.DDMethod, 'Enable', 'off');
end
else
set(hObject,'Value',0);
set(handles.DDMethod, 'Enable', 'off');
end

% --- Executes on selection change in DDMethod.
function DDMethod_Callback(hObject, eventdata, handles)
Expand Down
2 changes: 1 addition & 1 deletion Code/BigGreenGUI.m
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ function AdvancedButton_Callback(hObject, eventdata, handles)
clear stemp

SaveSettings(hObject, handles);
AdvancedSettings();
AdvancedSettings;

handles.AlreadyOpened = 1;

Expand Down
4 changes: 2 additions & 2 deletions Code/HREBSDMain.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
% tic
% profile n
disp('Dont forget to change PC if the image is cropped by ReadEBSDImage.m')
Settings.DoUsePCFile
Settings.DoPCStrainMin
Settings.DoUsePCFile;
Settings.DoPCStrainMin;
%% Read in the first image and get the pixel size.
%The assumption is made that all following images in the scan
%are the same size and square.
Expand Down

0 comments on commit bdc04c4

Please sign in to comment.