From 9620a3af1d7f525823c232a0274a4fcbf9c671e4 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sat, 26 Aug 2023 11:47:13 -0400 Subject: [PATCH] add photo dimensions to statusbar --- Photo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Photo.cs b/Photo.cs index 1d81e44..34e8995 100644 --- a/Photo.cs +++ b/Photo.cs @@ -312,7 +312,7 @@ public class Photo { public string Description() { string date = DateTimeOriginal.ToString("yyyy-MM-dd HH:mm:ss"); return String.Format( - "{0,6} {1,-5} {2,-7} {3,-10} {4} {5,-20} {6}", - FocalLength, FNumber, ExposureTime, IsoSpeed, date, ShortLensModel, Filename); + "{0,6} {1,-5} {2,-7} {3,-10} {7,4}x{8,-4} {4} {5,-20} {6}", + FocalLength, FNumber, ExposureTime, IsoSpeed, date, ShortLensModel, Filename, Size.X, Size.Y); } }