Change icon of remove highlight to trash can

Consistent with other remove buttons
This commit is contained in:
Kovid Goyal 2020-07-29 10:51:36 +05:30
parent 185e331e95
commit 8d4744c3e4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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