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; } }