From 2d6da347a40713f5abf37f4a869c0fd8182316cd Mon Sep 17 00:00:00 2001 From: Lee Wilmott Date: Wed, 23 Jul 2025 23:39:05 +0100 Subject: [PATCH] Fix typo in About dialogue box --- src/Greenshot/Forms/AboutForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Greenshot/Forms/AboutForm.cs b/src/Greenshot/Forms/AboutForm.cs index a9cfc2cfc..310f3b597 100644 --- a/src/Greenshot/Forms/AboutForm.cs +++ b/src/Greenshot/Forms/AboutForm.cs @@ -153,7 +153,7 @@ namespace Greenshot.Forms _bitmap = ImageHelper.CreateEmpty(90, 90, PixelFormat.Format24bppRgb, BackColor, 96, 96); pictureBox1.Image = _bitmap; - lblTitle.Text = $@"Greenshot {EnvironmentInfo.GetGreenshotVersion()} {(IniConfig.IsPortable ? " Portable" : "")} ({OsInfo.Bits}) bit)"; + lblTitle.Text = $@"Greenshot {EnvironmentInfo.GetGreenshotVersion()} {(IniConfig.IsPortable ? " Portable" : "")} ({OsInfo.Bits} bit)"; // Number of frames the pixel animation takes int frames = FramesForMillis(2000);