From e0f142f1c81406fc6336e886944f2e4dac564a75 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 7 Aug 2020 13:00:24 +0530 Subject: [PATCH] Better internet search icon --- imgsrc/srv/binoculars.svg | 1 - imgsrc/srv/global-search.svg | 3 +++ src/pyj/read_book/selection_bar.pyj | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 imgsrc/srv/binoculars.svg create mode 100644 imgsrc/srv/global-search.svg diff --git a/imgsrc/srv/binoculars.svg b/imgsrc/srv/binoculars.svg deleted file mode 100644 index 36fce414f0..0000000000 --- a/imgsrc/srv/binoculars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/imgsrc/srv/global-search.svg b/imgsrc/srv/global-search.svg new file mode 100644 index 0000000000..daa1d1dbd7 --- /dev/null +++ b/imgsrc/srv/global-search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/pyj/read_book/selection_bar.pyj b/src/pyj/read_book/selection_bar.pyj index 5eda6ad002..e2d7862585 100644 --- a/src/pyj/read_book/selection_bar.pyj +++ b/src/pyj/read_book/selection_bar.pyj @@ -169,7 +169,7 @@ def all_actions(): 'quick_highlight': a('highlight', _('Quick highlight in current color'), 'quick_highlight'), 'highlight': a('highlight', _('Highlight selection'), 'create_highlight'), 'search': a('search', _('Search for selection in the book'), 'book_search'), - 'search_net': a('binoculars', _('Search for selection on the net'), 'internet_search'), + 'search_net': a('global-search', _('Search for selection on the net'), 'internet_search'), 'remove_highlight': a('trash', _('Remove this highlight'), 'remove_highlight', True), 'clear': a('close', _('Clear selection'), 'clear_selection'), }