Update Subscription, NO re-select

This commit is contained in:
JaredDC 2021-06-30 00:58:38 +08:00
parent b249db7536
commit 8e80fd6d34

View file

@ -881,7 +881,7 @@ namespace v2rayN.Forms
private void menuUpdateSubscriptions_Click(object sender, EventArgs e) private void menuUpdateSubscriptions_Click(object sender, EventArgs e)
{ {
UpdateSubscriptionProcess(); UpdateSubscriptionRememberChoice();
} }
private void tsbBackupGuiNConfig_Click(object sender, EventArgs e) private void tsbBackupGuiNConfig_Click(object sender, EventArgs e)
@ -1338,6 +1338,11 @@ namespace v2rayN.Forms
return 0; return 0;
} }
private void tsbSubUpdate_Click(object sender, EventArgs e) private void tsbSubUpdate_Click(object sender, EventArgs e)
{
UpdateSubscriptionRememberChoice();
}
private void UpdateSubscriptionRememberChoice()
{ {
try try
{ {
@ -1368,6 +1373,7 @@ namespace v2rayN.Forms
UpdateSubscriptionProcess(); UpdateSubscriptionProcess();
} }
} }
/// <summary> /// <summary>
/// the subscription update process /// the subscription update process
/// </summary> /// </summary>