mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-22 06:22:41 +00:00
fix interactive control char bug
This commit is contained in:
parent
4489d08761
commit
4886744a67
1 changed files with 3 additions and 1 deletions
|
@ -847,6 +847,8 @@ static partial class Program
|
|||
return "s";
|
||||
else if (key.Key == ConsoleKey.Enter)
|
||||
return userInput;
|
||||
else if (char.IsControl(key.KeyChar))
|
||||
continue;
|
||||
else
|
||||
userInput += key.KeyChar;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue