@@ -993,13 +993,13 @@ private void Request_Map_NavigateGo()
993993 attribute : ElementAttribute . GPSLatitude ,
994994 version : directoryElement . GetMaxAttributeVersion (
995995 attribute : ElementAttribute . GPSLatitude ) ,
996- notFoundValue : null ) ;
996+ notFoundValue : null , nowSavingExif : false ) ;
997997
998998 string ? GPSLongitudeStr = directoryElement . GetAttributeValueString (
999999 attribute : ElementAttribute . GPSLongitude ,
10001000 version : directoryElement . GetMaxAttributeVersion (
10011001 attribute : ElementAttribute . GPSLongitude ) ,
1002- notFoundValue : null ) ;
1002+ notFoundValue : null , nowSavingExif : false ) ;
10031003
10041004 double ? FocalLength = directoryElement . GetAttributeValue < double > (
10051005 attribute : ElementAttribute . FocalLength ,
@@ -1158,24 +1158,24 @@ private void Request_Map_NavigateGo()
11581158 attribute : ElementAttribute . GPSLatitude ,
11591159 version : directoryElement . GetMaxAttributeVersion (
11601160 attribute : ElementAttribute . GPSLatitude ) ,
1161- notFoundValue : null ) ;
1161+ notFoundValue : null , nowSavingExif : false ) ;
11621162
11631163 string ? GPSLongitudeStr = directoryElement . GetAttributeValueString (
11641164 attribute : ElementAttribute . GPSLongitude ,
11651165 version : directoryElement . GetMaxAttributeVersion (
11661166 attribute : ElementAttribute . GPSLongitude ) ,
1167- notFoundValue : null ) ;
1167+ notFoundValue : null , nowSavingExif : false ) ;
11681168 string GPSDestLatitudeStr = directoryElement . GetAttributeValueString (
11691169 attribute : ElementAttribute . GPSDestLatitude ,
11701170 version : directoryElement . GetMaxAttributeVersion (
11711171 attribute : ElementAttribute . GPSDestLatitude ) ,
1172- notFoundValue : null ) ;
1172+ notFoundValue : null , nowSavingExif : false ) ;
11731173
11741174 string ? GPSDestLongitudeStr = directoryElement . GetAttributeValueString (
11751175 attribute : ElementAttribute . GPSDestLongitude ,
11761176 version : directoryElement . GetMaxAttributeVersion (
11771177 attribute : ElementAttribute . GPSDestLongitude ) ,
1178- notFoundValue : null ) ;
1178+ notFoundValue : null , nowSavingExif : false ) ;
11791179
11801180 if ( ! ( string . IsNullOrWhiteSpace ( value : GPSLatitudeStr ) ||
11811181 string . IsNullOrWhiteSpace ( value : GPSDestLatitudeStr ) ||
@@ -1443,7 +1443,7 @@ private void tmi_File_EditFiles_Click(object sender,
14431443 attribute : ElementAttribute . GUID ,
14441444 version : DirectoryElement . AttributeVersion
14451445 . Original , // GUIDs don't change
1446- notFoundValue : null ) ) ;
1446+ notFoundValue : null , nowSavingExif : false ) ) ;
14471447 }
14481448
14491449 EditFileFormGeneric . ShowFrmEditFileData ( ) ;
@@ -1754,7 +1754,7 @@ private void tsb_EditFile_Click(object sender,
17541754 attribute : ElementAttribute . GUID ,
17551755 version : DirectoryElement . AttributeVersion
17561756 . Original , // GUIDs don't change
1757- notFoundValue : null ) ) ;
1757+ notFoundValue : null , nowSavingExif : false ) ) ;
17581758 }
17591759
17601760 EditFileFormGeneric . ShowFrmEditFileData ( ) ;
@@ -2414,7 +2414,7 @@ await HelperFileSystemOperators
24142414 attribute : ElementAttribute . GUID ,
24152415 version : DirectoryElement . AttributeVersion
24162416 . Original , // GUIDs don't change
2417- notFoundValue : null ) ) ;
2417+ notFoundValue : null , nowSavingExif : false ) ) ;
24182418
24192419 Logger . Trace ( message : "Add File To lvw_FileListEditImages" ) ;
24202420 EditFileFormGeneric . ShowFrmEditFileData ( ) ;
@@ -2486,12 +2486,12 @@ private async Task UpdateLvwExifDataItems(DirectoryElement directoryElement)
24862486 lvi . SubItems . Add ( text : directoryElement . GetAttributeValueString (
24872487 attribute : attribute ,
24882488 version : DirectoryElement . AttributeVersion . Original ,
2489- notFoundValue : null ) ) ;
2489+ notFoundValue : null , nowSavingExif : false ) ) ;
24902490 lvi . SubItems . Add ( text : directoryElement . GetAttributeValueString (
24912491 attribute : attribute ,
24922492 version : DirectoryElement . AttributeVersion
24932493 . Stage3ReadyToWrite ,
2494- notFoundValue : null ) ) ;
2494+ notFoundValue : null , nowSavingExif : false ) ) ;
24952495 lvw_ExifData . Items . Add ( value : lvi ) ;
24962496 }
24972497 }
@@ -2587,7 +2587,7 @@ private async void lvw_FileList_KeyDown(object sender,
25872587 attribute : ElementAttribute . GUID ,
25882588 version : DirectoryElement . AttributeVersion
25892589 . Original , // GUIDs don't change
2590- notFoundValue : null ) ) ;
2590+ notFoundValue : null , nowSavingExif : false ) ) ;
25912591 }
25922592
25932593 EditFileFormGeneric . ShowFrmEditFileData ( ) ;
0 commit comments