aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-17 11:26:11 +0700
committerEverythingWindows <[email protected]>2022-11-17 11:26:11 +0700
commitdc8ddb780f10e7c8372c558ad4dec5fd171b8cc8 (patch)
tree699cdfa0445042bcca3f3fdb01b46ddba1a0d85d /ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb
parentbe79ac82e2a542d21f15222119be99051f32dfa8 (diff)
downloadshiftos-therevival-old-dc8ddb780f10e7c8372c558ad4dec5fd171b8cc8.tar.gz
shiftos-therevival-old-dc8ddb780f10e7c8372c558ad4dec5fd171b8cc8.tar.bz2
shiftos-therevival-old-dc8ddb780f10e7c8372c558ad4dec5fd171b8cc8.zip
Changing from all uses Console.BadCommand = False to just one NormalCommand() Sub
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb
index c067125..286e544 100644
--- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Infobar.vb
@@ -7,18 +7,18 @@
Case "on"
Strings.OnceInfo(2) = "True"
Console.CheckFeature()
- Console.BadCommand = False
+ NormalCommand()
advancedtool = False
Case "off"
Strings.OnceInfo(2) = "False"
Console.CheckFeature()
- Console.BadCommand = False
+ NormalCommand()
advancedtool = False
End Select
If advancedtool = True Then
If infobarcommand Like "color *" Then
GetColor("infobar", infobarcommand.Substring(6, 1), infobarcommand.Substring(7, 1))
- Console.BadCommand = False
+ NormalCommand()
End If
End If
End Sub