Skip to content
Snippets Groups Projects
Commit 93eff1d6 authored by Mark Winter's avatar Mark Winter
Browse files

Fixed image open dialog to display dataset name.

parent 00015a1e
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,12 @@ imageFilter = [settings.imagePath '*.TIF'];
bOpened = 0;
while ( ~bOpened )
[settings.imageFile,settings.imagePath,filterIndexImage] = uigetfile(imageFilter,'Open First Image in dataset: ');
dataSetString = '';
if ( isfield(CONSTANTS,'datasetName') )
dataSetString = CONSTANTS.datasetName;
end
[settings.imageFile,settings.imagePath,filterIndexImage] = uigetfile(imageFilter,['Open First Image in Dataset (' dataSetString '): ' ]);
if (filterIndexImage==0)
return
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment