From 8d4744c3e44fbfa63b3f7a1e06bc15aaa0b0137b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 29 Jul 2020 10:51:36 +0530 Subject: [PATCH] Change icon of remove highlight to trash can Consistent with other remove buttons --- src/pyj/read_book/selection_bar.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/selection_bar.pyj b/src/pyj/read_book/selection_bar.pyj index 579174ca05..e22602faa9 100644 --- a/src/pyj/read_book/selection_bar.pyj +++ b/src/pyj/read_book/selection_bar.pyj @@ -23,7 +23,7 @@ def all_actions(): 'highlight': a('highlight', _('Highlight selection in notes mode'), 'create_highlight'), 'selection': a('arrows-h', _('Highlight adjusting selection'), 'adjust_selection'), 'search_net': a('search', _('Search for selection on the net'), 'internet_search'), - 'remove_highlight': a('eraser', _('Remove this highlight'), 'remove_highlight', True), + 'remove_highlight': a('trash', _('Remove this highlight'), 'remove_highlight', True), 'clear': a('close', _('Clear selection'), 'clear_selection'), } return all_actions.ans