diff options
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/External')
4 files changed, 4 insertions, 4 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb b/ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb index 06525cb..52a1f30 100644 --- a/ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb +++ b/ShiftOS-TheRevival/TerminalApplications/External/BasicCalculator/App_BC.vb @@ -18,6 +18,7 @@ NewLine(Nothing) Console.CurrentInterpreter = "bc" Console.ShouldChange = True + Console_Interpreters() End Sub Public Sub BC_Calculate() diff --git a/ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb b/ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb index 32910ed..e9e5410 100644 --- a/ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb +++ b/ShiftOS-TheRevival/TerminalApplications/External/GuessTheNumber/App_Guess.vb @@ -11,6 +11,7 @@ Console.CurrentInterpreter = "guess" GTN_GenerateNumber() Console.ShouldChange = True + Console_Interpreters() End Sub Public Sub GTN_GenerateNumber() diff --git a/ShiftOS-TheRevival/TerminalApplications/External/TerminalExternalApps.vb b/ShiftOS-TheRevival/TerminalApplications/External/TerminalExternalApps.vb index 24384e3..3148ded 100644 --- a/ShiftOS-TheRevival/TerminalApplications/External/TerminalExternalApps.vb +++ b/ShiftOS-TheRevival/TerminalApplications/External/TerminalExternalApps.vb @@ -24,10 +24,6 @@ Module TerminalExternalApps 'Strings.OnceInfo(5) = Terminal.TrackPos 'Terminal.TrackPos = Nothing End If - If Console.ShouldChange = True Then - Console.ChangeInterpreter = True - Console.ShouldChange = False - End If End Sub diff --git a/ShiftOS-TheRevival/TerminalApplications/External/Textpad/App_TextPad.vb b/ShiftOS-TheRevival/TerminalApplications/External/Textpad/App_TextPad.vb index efe68f4..bf4b9ba 100644 --- a/ShiftOS-TheRevival/TerminalApplications/External/Textpad/App_TextPad.vb +++ b/ShiftOS-TheRevival/TerminalApplications/External/Textpad/App_TextPad.vb @@ -16,6 +16,8 @@ Module App_TextPad TextPad_CheckExist(command) Console.ToolBar.Text = "TextPad - " & command & Environment.NewLine & "Ctrl-Q Exit | Ctrl-N New | Ctrl-O Open | Ctrl-S Save | F12 Save As" Console.ReleaseCursor = True + Console.ShouldChange = True + Console_Interpreters() TextRebind() End Sub |
