From 217e3f301a93259e03c2c8133c30338b36ca091b Mon Sep 17 00:00:00 2001 From: AlanMoonbase Date: Fri, 11 Jul 2025 12:15:53 -0700 Subject: [PATCH] Fix Some Profile Images Not Showing As A Square --- qtc-net-client-2/Forms/Profile.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qtc-net-client-2/Forms/Profile.cs b/qtc-net-client-2/Forms/Profile.cs index 9e7994b..7d9c3bc 100644 --- a/qtc-net-client-2/Forms/Profile.cs +++ b/qtc-net-client-2/Forms/Profile.cs @@ -53,7 +53,11 @@ namespace qtc_net_client_2.Forms { using (var ms = new MemoryStream(pfpRes.Data)) { - pbUserPfp.Image = new Bitmap(ms); + Bitmap bmp = new Bitmap(ms); + if (bmp.Width != 128 && bmp.Height != 128) + bmp.SetResolution(128, 128); + + pbUserPfp.Image = bmp; } }