reimplement confirmation descriptions for usability

This commit is contained in:
Carson McManus 2018-04-11 19:20:01 -04:00
parent 2c429b4dec
commit 27a440a568
2 changed files with 5 additions and 5 deletions

View file

@ -661,7 +661,7 @@ namespace SteamGuard
Console.ForegroundColor = t == selected ? colorSelected : itemColor;
Console.WriteLine($" [{t}] [{tradeActions[t]}] {trades[t].ConfType} {trades[t].Creator}");
Console.WriteLine($" [{t}] [{tradeActions[t]}] {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}");
}
var key = Console.ReadKey();
switch (key.Key)
@ -704,15 +704,15 @@ namespace SteamGuard
switch (tradeActions[t])
{
case TradeAction.Accept:
if (Verbose) Console.Write($"Accepting {trades[t].ConfType} {trades[t].Creator}...");
if (Verbose) Console.Write($"Accepting {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}...");
success = account.AcceptConfirmation(trades[t]);
break;
case TradeAction.Deny:
if (Verbose) Console.Write($"Denying {trades[t].ConfType} {trades[t].Creator}...");
if (Verbose) Console.Write($"Denying {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}...");
success = account.DenyConfirmation(trades[t]);
break;
case TradeAction.Ignore:
if (Verbose) Console.Write($"Ignoring {trades[t].ConfType} {trades[t].Creator}...");
if (Verbose) Console.Write($"Ignoring {trades[t].ConfType} {trades[t].Creator} {trades[t].Description}...");
success = true;
break;
default:

@ -1 +1 @@
Subproject commit 98107316db1a8e0e789e066b4627ecd9689d80a0
Subproject commit 2f9f8b92cd365414196b90cae3ab25ff430a4fab