chore(shortkey): change shortkey for marking as junk from j to shift+j

It was too common for people to obliviously mark a mail as junk...
This commit is contained in:
Hivert Quentin
2024-03-05 17:26:37 +01:00
parent e131cd7961
commit 1719baea7a
3 changed files with 1 additions and 7 deletions

View File

@@ -485,9 +485,6 @@
/* Hotkey to write a new message */
"hotkey_compose" = "w";
/* Hotkey to mark selected message(s) as junk */
"hotkey_junk" = "j";
/* Hotkey to flag a message */
"hotkey_flag" = "*";

View File

@@ -485,9 +485,6 @@
/* Hotkey to write a new message */
"hotkey_compose" = "n";
/* Hotkey to mark selected message(s) as junk */
"hotkey_junk" = "i";
/* Hotkey to flag a message */
"hotkey_flag" = "*";

View File

@@ -80,7 +80,7 @@
}
}));
keys.push(sgHotkeys.createHotkey({
key: l('hotkey_junk'),
key: l('shift+j'),
description: l('Mark the selected messages as junk'),
callback: vm.markOrUnMarkMessagesAsJunk
}));