mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +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);
|
Mute(!IsMute);
|
||||||
}
|
}
|
||||||
|
|
||||||
U0 CtrlAltN(I64)
|
|
||||||
{
|
|
||||||
LBts(sys_ctrl_alt_flags, CTRL_ALT_TAB);
|
|
||||||
}
|
|
||||||
|
|
||||||
U0 CtrlAltT(I64)
|
U0 CtrlAltT(I64)
|
||||||
{
|
{
|
||||||
User;
|
User;
|
||||||
|
@ -235,7 +230,6 @@ U0 KeyDevInit()
|
||||||
CtrlAltCBSet('D', &CtrlAltD, "Cmd /Enter Debugger",, TRUE);
|
CtrlAltCBSet('D', &CtrlAltD, "Cmd /Enter Debugger",, TRUE);
|
||||||
CtrlAltCBSet('F', &CtrlAltF, "Cmd /Toggle Aux Font");
|
CtrlAltCBSet('F', &CtrlAltF, "Cmd /Toggle Aux Font");
|
||||||
CtrlAltCBSet('M', &CtrlAltM, "Cmd /Toggle Mute");
|
CtrlAltCBSet('M', &CtrlAltM, "Cmd /Toggle Mute");
|
||||||
CtrlAltCBSet('N', &CtrlAltN, "Cmd /Next Focus Task",, TRUE);
|
|
||||||
CtrlAltCBSet('T', &CtrlAltT, "Cmd /Terminal Window");
|
CtrlAltCBSet('T', &CtrlAltT, "Cmd /Terminal Window");
|
||||||
CtrlAltCBSet('V', &CtrlAltV, "Cmd /Video Framebuffer Flush",, TRUE);
|
CtrlAltCBSet('V', &CtrlAltV, "Cmd /Video Framebuffer Flush",, TRUE);
|
||||||
CtrlAltCBSet('X', &CtrlAltX, "Cmd /Kill Focused Task",, TRUE);
|
CtrlAltCBSet('X', &CtrlAltX, "Cmd /Kill Focused Task",, TRUE);
|
||||||
|
|
Loading…
Reference in a new issue