mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 03:11:47 -05:00
i think git is drunk
This commit is contained in:
parent
df647e5024
commit
1febbbd405
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ namespace ShiftOS.Main.ShiftOS.Apps
|
||||||
public bool RunningCommand = false;
|
public bool RunningCommand = false;
|
||||||
public bool WaitingResponse = false;
|
public bool WaitingResponse = false;
|
||||||
public string InputReturnText = "";
|
public string InputReturnText = "";
|
||||||
public List<string> c = TerminalBackend.commandBuffer;
|
public Stack<string> c = TerminalBackend.commandBuffer;
|
||||||
|
|
||||||
// The below variables makes the terminal... a terminal!
|
// The below variables makes the terminal... a terminal!
|
||||||
string OldText = "";
|
string OldText = "";
|
||||||
|
@ -133,7 +133,7 @@ namespace ShiftOS.Main.ShiftOS.Apps
|
||||||
else if (e.KeyCode == Keys.Up)
|
else if (e.KeyCode == Keys.Up)
|
||||||
{
|
{
|
||||||
if (c.Count == 0) return;
|
if (c.Count == 0) return;
|
||||||
termmain.AppendText(c.Last());
|
termmain.AppendText(c.Pop());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue