mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Revert "Remove redundant Ctrl-Alt-N bind"
This reverts commit 1c59545866
.
This commit is contained in:
parent
4a1877c22e
commit
cb0198e864
1 changed files with 6 additions and 0 deletions
|
@ -177,6 +177,11 @@ U0 CtrlAltM(I64)
|
|||
Mute(!IsMute);
|
||||
}
|
||||
|
||||
U0 CtrlAltN(I64)
|
||||
{
|
||||
LBts(sys_ctrl_alt_flags, CTRL_ALT_TAB);
|
||||
}
|
||||
|
||||
U0 CtrlAltT(I64)
|
||||
{
|
||||
User;
|
||||
|
@ -230,6 +235,7 @@ 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