Skip to content

Commit

Permalink
🐛允许快捷配置数为0
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingDM committed Mar 20, 2020
1 parent 0343a1a commit 0196dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Netch/Forms/SettingForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ private void ControlButton_Click(object sender, EventArgs e)
{
var ProfileCount = int.Parse(ProfileCount_TextBox.Text);

if (ProfileCount > 0)
if (ProfileCount > -1)
{
Global.Settings.ProfileCount = ProfileCount;
}
Expand Down

0 comments on commit 0196dbb

Please sign in to comment.