Char 'E' in addition to <DEL> for bookmarks

This commit is contained in:
ChristianVisintin
2021-03-10 12:14:46 +01:00
parent fba6da8120
commit 021bcf0c97

View File

@@ -189,8 +189,8 @@ impl AuthActivity {
self.view.active(COMPONENT_BOOKMARKS_LIST); self.view.active(COMPONENT_BOOKMARKS_LIST);
None None
} }
// <DEL> // <DEL | 'E'>
(COMPONENT_BOOKMARKS_LIST, &MSG_KEY_DEL) => { (COMPONENT_BOOKMARKS_LIST, &MSG_KEY_DEL) | (COMPONENT_BOOKMARKS_LIST, &MSG_KEY_CHAR_E) => {
// Show delete popup // Show delete popup
match self match self
.view .view
@@ -207,7 +207,7 @@ impl AuthActivity {
} }
} }
} }
(COMPONENT_RECENTS_LIST, &MSG_KEY_DEL) => { (COMPONENT_RECENTS_LIST, &MSG_KEY_DEL) | (COMPONENT_RECENTS_LIST, &MSG_KEY_CHAR_E) => {
// Show delete popup // Show delete popup
match self match self
.view .view