branch: elpa/helm commit fc5bb8169bf9de8ed9a0933d4a9e75fd9a08f958 Author: Thierry Volpiatto <thie...@posteo.net> Commit: Thierry Volpiatto <thie...@posteo.net>
Fix helm-tooltip face for tty --- helm-utils.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helm-utils.el b/helm-utils.el index 94e7c8377d..f6496fbff5 100644 --- a/helm-utils.el +++ b/helm-utils.el @@ -1053,8 +1053,9 @@ Assume regexp is a pcre based regexp." (defvar helm--show-help-echo-timer nil) (defvar helm--maybe-show-help-echo-overlay nil) (defface helm-tooltip - '((t :background "Goldenrod" - :foreground "black")) + '((((type tty pc)) + :background "yellow" :foreground "black") + (t :background "Goldenrod" :foreground "black")) "Face used by `helm-tooltip-show'." :group 'helm-grep-faces)