mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Remove redundant Ctrl-Alt-N bind
Ctrl-Alt-Tab already does what Ctrl-Alt-N does, additionally the Ctrl-Alt-N implementation was just a hack around how Ctrl-Alt-Tab is implemented in the Kernel's scheduler. See Kernel/Sched.ZC
This commit is contained in:
parent
08c2e68bc7
commit
1c59545866
1 changed files with 0 additions and 6 deletions
|
@ -177,11 +177,6 @@ U0 CtrlAltM(I64)
|
|||
Mute(!IsMute);
|
||||
}
|
||||
|
||||
U0 CtrlAltN(I64)
|
||||
{
|
||||
LBts(sys_ctrl_alt_flags, CTRL_ALT_TAB);
|
||||
}
|
||||
|
||||
U0 CtrlAltT(I64)
|
||||
{
|
||||
User;
|
||||
|
@ -235,7 +230,6 @@ U0 KeyDevInit()
|
|||
CtrlAltCBSet('D', &CtrlAltD, "Cmd /Enter Debugger",, TRUE);
|
||||
CtrlAltCBSet('F', &CtrlAltF, "Cmd /Toggle Aux Font");
|
||||
CtrlAltCBSet('M', &CtrlAltM, "Cmd /Toggle Mute");
|
||||
CtrlAltCBSet('N', &CtrlAltN, "Cmd /Next Focus Task",, TRUE);
|
||||
CtrlAltCBSet('T', &CtrlAltT, "Cmd /Terminal Window");
|
||||
CtrlAltCBSet('V', &CtrlAltV, "Cmd /Video Framebuffer Flush",, TRUE);
|
||||
CtrlAltCBSet('X', &CtrlAltX, "Cmd /Kill Focused Task",, TRUE);
|
||||
|
|
Loading…
Reference in a new issue