aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-24 21:26:45 +0700
committerEverythingWindows <[email protected]>2022-11-24 21:26:45 +0700
commit9754f495672581abd7098c39027b512525b5f9ab (patch)
tree60ea20826d7743f25b49be9254373b1e7f9cbee3 /ShiftOS-TheRevival/TerminalApplications/Internal
parenta594d38810939c8afbf0e12fb970d8aa3fd880e5 (diff)
downloadshiftos-therevival-old-9754f495672581abd7098c39027b512525b5f9ab.tar.gz
shiftos-therevival-old-9754f495672581abd7098c39027b512525b5f9ab.tar.bz2
shiftos-therevival-old-9754f495672581abd7098c39027b512525b5f9ab.zip
Fully functional and partially working Shifter
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb6
1 files changed, 4 insertions, 2 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb
index e688e9c..e7b22f1 100644
--- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb
@@ -7,9 +7,11 @@
Case 1
Select Case AppName
Case "knowledge_input"
- DuWM_NewProcess(Uni_KnowledgeInput)
+ If Strings.AvailableFeature(37) = 1 Then
+ DuWM_NewProcess(Uni_KnowledgeInput)
+ End If
Case "shifter"
- If Strings.AvailableFeature(36) = 0 Then
+ If Strings.AvailableFeature(36) = 1 Then
DuWM_NewProcess(DuWM_Shifter)
End If
End Select