renamed MainTerm to HomeContext to avoid confusion

This commit is contained in:
Djeeberjr 2023-01-30 03:04:20 +01:00
parent a9eb569a02
commit d684360547

View File

@ -5,7 +5,11 @@ import bin.Terminal;
import kernel.ui.WindowManager; import kernel.ui.WindowManager;
import kernel.ui.WindowContext; import kernel.ui.WindowContext;
class MainTerm { /**
The WindowContext that spawns all other contexts. This is the main terminal.
Listens to global hotkey "POS1"/"HOME" to switch back to this context.
**/
class HomeContext {
private static final MAX_CONTEXT:Int = 10; private static final MAX_CONTEXT:Int = 10;
private var ctx: WindowContext = null; private var ctx: WindowContext = null;