Update QRCodeControl.cs

This commit is contained in:
2dust 2020-03-27 13:18:44 +08:00
parent 07bdcb5491
commit 3a27b56cc1

View file

@ -32,8 +32,8 @@ namespace v2rayN.Forms
txtUrl.Text = string.Empty; txtUrl.Text = string.Empty;
return; return;
} }
picQRCode.Image = QRCodeHelper.GetQRCode(url);
txtUrl.Text = url; txtUrl.Text = url;
picQRCode.Image = QRCodeHelper.GetQRCode(url);
} }
} }