add photo dimensions to statusbar

This commit is contained in:
Colin McMillen 2023-08-26 11:47:13 -04:00
parent e9a13dba49
commit 9620a3af1d

View File

@ -312,7 +312,7 @@ public class Photo {
public string Description() { public string Description() {
string date = DateTimeOriginal.ToString("yyyy-MM-dd HH:mm:ss"); string date = DateTimeOriginal.ToString("yyyy-MM-dd HH:mm:ss");
return String.Format( return String.Format(
"{0,6} {1,-5} {2,-7} {3,-10} {4} {5,-20} {6}", "{0,6} {1,-5} {2,-7} {3,-10} {7,4}x{8,-4} {4} {5,-20} {6}",
FocalLength, FNumber, ExposureTime, IsoSpeed, date, ShortLensModel, Filename); FocalLength, FNumber, ExposureTime, IsoSpeed, date, ShortLensModel, Filename, Size.X, Size.Y);
} }
} }