diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2020-05-11 04:25:53 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2020-05-11 04:25:53 +0300 |
commit | b97877470dcf98d02e4bd31ece7bfb862969663f (patch) | |
tree | f286a09f1d08174c1f1b088ee8bfbb0a063739f7 /lisp/term/x-win.el | |
parent | a218c9861573b5ec4979ff2662f5c0343397e3ff (diff) | |
download | emacs-b97877470dcf98d02e4bd31ece7bfb862969663f.tar.gz emacs-b97877470dcf98d02e4bd31ece7bfb862969663f.tar.bz2 emacs-b97877470dcf98d02e4bd31ece7bfb862969663f.zip |
Use better icons on GTK in message-mode and isearch
* lisp/gnus/message.el (message-tool-bar-retro):
Use non-Gnus-specific icon.
* lisp/term/x-win.el (x-gtk-stock-map):
Use more themed icons (bug#40990).
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r-- | lisp/term/x-win.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 5b8feb14a5e..d7bc64fa52a 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -1407,13 +1407,13 @@ This returns an error if any Emacs frames are X frames." ("etc/images/right-arrow" . ("go-next" "gtk-go-forward")) ("etc/images/home" . ("go-home" "gtk-home")) ("etc/images/jump-to" . ("go-jump" "gtk-jump-to")) - ("etc/images/index" . "gtk-index") + ("etc/images/index" . ("gtk-search" "gtk-index")) ("etc/images/exit" . ("application-exit" "gtk-quit")) ("etc/images/cancel" . "gtk-cancel") ("etc/images/info" . ("dialog-information" "gtk-info")) ("etc/images/bookmark_add" . "n:bookmark_add") ;; Used in Gnus and/or MH-E: - ("etc/images/attach" . "gtk-attach") + ("etc/images/attach" . ("mail-attachment" "gtk-attach")) ("etc/images/connect" . "gtk-connect") ("etc/images/contact" . "gtk-contact") ("etc/images/delete" . ("edit-delete" "gtk-delete")) @@ -1425,12 +1425,14 @@ This returns an error if any Emacs frames are X frames." ("etc/images/lock" . "gtk-lock") ("etc/images/next-page" . "gtk-next-page") ("etc/images/refresh" . ("view-refresh" "gtk-refresh")) + ("etc/images/search-replace" . "edit-find-replace") ("etc/images/sort-ascending" . ("view-sort-ascending" "gtk-sort-ascending")) ("etc/images/sort-column-ascending" . "gtk-sort-column-ascending") ("etc/images/sort-criteria" . "gtk-sort-criteria") ("etc/images/sort-descending" . ("view-sort-descending" "gtk-sort-descending")) ("etc/images/sort-row-ascending" . "gtk-sort-row-ascending") + ("etc/images/spell" . ("tools-check-spelling" "gtk-spell-check")) ("images/gnus/toggle-subscription" . "gtk-task-recurring") ("images/mail/compose" . "gtk-mail-compose") ("images/mail/copy" . "gtk-mail-copy") @@ -1442,7 +1444,7 @@ This returns an error if any Emacs frames are X frames." ("images/mail/reply-all" . "gtk-mail-reply-to-all") ("images/mail/reply" . "gtk-mail-reply") ("images/mail/save-draft" . "gtk-mail-handling") - ("images/mail/send" . "gtk-mail-send") + ("images/mail/send" . ("mail-send" "gtk-mail-send")) ("images/mail/spam" . "gtk-spam") ;; Used for GDB Graphical Interface ("images/gud/break" . "gtk-no") |