From 021bcf0c9710606150d7e6caf5f5466c92781c4c Mon Sep 17 00:00:00 2001 From: ChristianVisintin Date: Wed, 10 Mar 2021 12:14:46 +0100 Subject: [PATCH] Char 'E' in addition to for bookmarks --- src/ui/activities/auth_activity/update.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/activities/auth_activity/update.rs b/src/ui/activities/auth_activity/update.rs index 4745f56..83b3462 100644 --- a/src/ui/activities/auth_activity/update.rs +++ b/src/ui/activities/auth_activity/update.rs @@ -189,8 +189,8 @@ impl AuthActivity { self.view.active(COMPONENT_BOOKMARKS_LIST); None } - // - (COMPONENT_BOOKMARKS_LIST, &MSG_KEY_DEL) => { + // + (COMPONENT_BOOKMARKS_LIST, &MSG_KEY_DEL) | (COMPONENT_BOOKMARKS_LIST, &MSG_KEY_CHAR_E) => { // Show delete popup match self .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 match self .view