diff options
| author | EverythingWindows <[email protected]> | 2022-12-04 18:46:53 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-12-04 18:46:53 +0700 |
| commit | 2cb19f4dd09ab07893b331bf93728368ae0c3f00 (patch) | |
| tree | 887620644090347b36eee6c649289955aa03b7af /ShiftOS-TheRevival/MainForms/Applications/Console.vb | |
| parent | 0e6eb6e76f8227b8055f5ea032f9582dcacee5f5 (diff) | |
| download | shiftos-therevival-old-2cb19f4dd09ab07893b331bf93728368ae0c3f00.tar.gz shiftos-therevival-old-2cb19f4dd09ab07893b331bf93728368ae0c3f00.tar.bz2 shiftos-therevival-old-2cb19f4dd09ab07893b331bf93728368ae0c3f00.zip | |
little work on the next window manager
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/Applications/Console.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/Applications/Console.vb | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/ShiftOS-TheRevival/MainForms/Applications/Console.vb b/ShiftOS-TheRevival/MainForms/Applications/Console.vb index 8e34957..00eaea0 100644 --- a/ShiftOS-TheRevival/MainForms/Applications/Console.vb +++ b/ShiftOS-TheRevival/MainForms/Applications/Console.vb @@ -22,9 +22,7 @@ Public Class Console With ShortcutHandler .WorkerSupportsCancellation = True End With - 'MsgBox("Full!") Console_Full() - 'MsgBox("Initialize!") InitializeTerminal() End Sub @@ -227,7 +225,7 @@ Public Class Console If Strings.OnceInfo(0) = "Yes" Then InfoBar.Text = InfoBar.Text & " root |" Else - InfoBar.Text = InfoBar.Text & " user |" + InfoBar.Text = InfoBar.Text & " " & Strings.ComputerInfo(1) & " |" End If InfoBar.Text = InfoBar.Text & " " & CurrentInterpreter & " |" InfoBar.Text = InfoBar.Text & " " & Strings.ComputerInfo(2) & " CP |" @@ -238,7 +236,12 @@ Public Class Console End Sub - Private Sub DuWMHandle_Tick(sender As Object, e As EventArgs) Handles DuWMHandle.Tick - + Private Sub ConsoleFontHandle_Tick(sender As Object, e As EventArgs) Handles ConsoleFontHandle.Tick + If InfoBar.Font IsNot GUISCustomizations.GUIConsoleFont Then + InfoBar.Font = GUISCustomizations.GUIConsoleFont + End If + If ToolBar.Font IsNot GUISCustomizations.GUIConsoleFont Then + ToolBar.Font = GUISCustomizations.GUIConsoleFont + End If End Sub End Class
\ No newline at end of file |
