File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -370,9 +370,13 @@ public string DimensionsDisplay
370370 /// </summary>
371371 public string ContextualPropertyString => FileExtension switch
372372 {
373- _ when FileExtensionHelpers . IsImageFile ( FileExtension ) => ! string . IsNullOrEmpty ( DimensionsDisplay )
374- ? $ "{ Strings . PropertyDimensions . GetLocalizedResource ( ) } : { DimensionsDisplay } "
375- : string . Empty ,
373+ // Image files are on hold until DimensionsDisplay switches to 'System.Kind', otherwise it causes OneDrive files to be downloaded.
374+ // Images
375+ //_ when FileExtensionHelpers.IsImageFile(FileExtension) => !string.IsNullOrEmpty(DimensionsDisplay)
376+ // ? $"{Strings.PropertyDimensions.GetLocalizedResource()}: {DimensionsDisplay}"
377+ // : string.Empty,
378+
379+ // Other file formats
376380 _ => ! string . IsNullOrEmpty ( ItemDateModified )
377381 ? $ "{ Strings . Modified . GetLocalizedResource ( ) } : { ItemDateModified } "
378382 : string . Empty
You can’t perform that action at this time.
0 commit comments