feature: client: key: Ctrl + L -> Ctrl + Shift + L: Log out (#466)

This commit is contained in:
coderiaser 2026-06-15 14:47:09 +03:00
parent ef83a61a0c
commit 78b206e06b
2 changed files with 2 additions and 2 deletions

View file

@ -443,7 +443,7 @@ async function _switchKey(event) {
break;
case KEY.L:
if (ctrlMeta) {
if (ctrlMeta && shift) {
CloudCmd.logOut();
event.preventDefault();
}